Page not found (404)

Request Method: GET
Request URL: http://bosa-impex.mn/news?id=42

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

  1. admin/
  2. [name='index']
  3. mn/ [name='index_mn']
  4. mn/greeting/ [name='greeting_mn']
  5. mn/aboutus/ [name='about_us_mn']
  6. mn/category/<int:pk>/ [name='category_mn']
  7. mn/product/<int:pk>/ [name='product_mn']
  8. mn/news/ [name='news_mn']
  9. mn/news/<int:pk>/ [name='news_read_mn']
  10. mn/contact/ [name='contact_mn']
  11. en/ [name='index_en']
  12. en/greeting/ [name='greeting_en']
  13. en/aboutus/ [name='about_us_en']
  14. en/category/<int:pk>/ [name='category_en']
  15. en/product/<int:pk>/ [name='product_en']
  16. en/news/ [name='news_en']
  17. en/news/<int:pk>/ [name='news_read_en']
  18. en/contact/ [name='contact_en']
  19. ckeditor/
  20. ^media/(?P<path>.*)$

The current path, news, 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.