Page not found (404)

Request Method: GET
Request URL: https://ace-stars.com/news/new1.htm

Using the URLconf defined in front.urls, Django tried these URL patterns, in this order:

  1. admin/
  2. tinymce/
  3. [name='home']
  4. sample [name='samples']
  5. extends [name='ext']
  6. orders/create [name='create']
  7. orders/create/new [name='create_new']
  8. orders/dashboard [name='order-list-view']
  9. orders/mods/dashboard [name='order-list-view-mods']
  10. orders/dashboard/complete [name='order-list-view-complete']
  11. orders/dashboard/all [name='order-list-view-all']
  12. orders/cancel [name='order-cancel-view']
  13. order/details/<int:id>/ [name='order_detail']
  14. order/files/details/<int:id>/ [name='order_files']
  15. mods/order/details/<int:id>/ [name='order_detail_mod']
  16. order/details/messages/<int:id>/ [name='client-messages']
  17. order/details/notifications/messages/<int:id>/ [name='mod-messages-email']
  18. order/details/notifications/complete/<int:id>/ [name='order-complete-email']
  19. order/details/messages/<int:id>/ [name='order_emails_messages']
  20. order/payment/<int:id>/ [name='order_payment']
  21. update/order/<int:id>/ [name='order_update']
  22. order/callback/<int:id>/ [name='order_payment_callback']
  23. create [name='create_payment']
  24. about [name='about']
  25. cancel/order/<int:id>/ [name='cancel_success']
  26. payments [name='payment']
  27. order/details/payment/<int:id>/ [name='proceed_payment']
  28. getpayment/<int:id>/ [name='get_payment']
  29. payment/complete/<int:order_id>/ [name='payment-red-email']
  30. payment/complete/<int:order_id>/ [name='payment-complete']
  31. payment/callback/<int:id>/<int:ord_id>/ [name='callback_payment']
  32. mpesa/request/ [name='mpesa_payment']
  33. login/ [name='login']
  34. logout/ [name='logout']
  35. register/ [name='register']
  36. reset_password/ [name='reset_password']
  37. reset_password_sent/ [name='password_reset_done']
  38. reset/<uidb64>/<token>/ [name='password_reset_confirm']
  39. reset_password_complete/ [name='password_reset_complete']
  40. test1/ [name='mailtest']
  41. users/messages/ [name='contact-us-view']
  42. users/messages/notifications/sent/<int:id>/ [name='contact-us-notification']
  43. blog/posts [name='post-list']
  44. blog/posts/create [name='post-create']
  45. blog/posts/<int:id>/ [name='post-detail']
  46. accesstoken/ [name='get_access_token']
  47. stkpush [name='initiate_stk_push']
  48. ^media/(?P<path>.*)$

The current path, news/new1.htm, didn’t match any of these.

You’re seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.