Page not found (404)

“/home/sreeragh/financeproject/index2.html” does not exist
Request Method: GET
Request URL: https://sreeragh.com/index2.html
Raised by: django.views.static.serve

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

  1. admin/
  2. contact/
  3. businessloan/view
  4. forex/all [name='add-forex']
  5. forex/view
  6. subordinate_debt/view
  7. ncd/view
  8. fair-practice/view
  9. investment-policy/view
  10. loan/
  11. directors/all [name='my-director']
  12. directors/view [name='my-directors']
  13. directors/remove/<int:id> [name='director-delete']
  14. gallery/all [name='my-gallery']
  15. gallery/view [name='my-gallerys']
  16. gallery/remove/<int:id> [name='gallery-delete']
  17. contact_list/ [name='admin_contact_list']
  18. contact/remove/<int:id> [name='contact-delete']
  19. news/all [name='my-news']
  20. news/view [name='my-newss']
  21. news/remove/<int:id> [name='news-delete']
  22. admin_home/ [name='Admin_home']
  23. login/ [name='signin']
  24. logout/ [name='signout']
  25. downloads/add [name='downloads-add']
  26. forms/view [name='downloads']
  27. downloads/remove/<int:id> [name='Download-delete']
  28. financial/add [name='financial-add']
  29. financial/view [name='financial']
  30. Financial/remove/<int:id> [name='financial-delete']
  31. personalloan/all [name='AddPersonalloan']
  32. personalloan/view [name='my-personalloan']
  33. personalloan/remove/<int:id> [name='personalloan-delete']
  34. Personal_loan/change/<int:id> [name='Personalloan-change']
  35. bikeloan/all [name='AddBikeloan']
  36. bikeloan/view [name='my-bikeloan']
  37. bikeloan/remove/<int:id> [name='bikeloan-delete']
  38. bikeloan/change/<int:id> [name='bikeloan-change']
  39. carloan/all [name='AddCarloan']
  40. carloan/view [name='my-carloan']
  41. carloan/remove/<int:id> [name='carloan-delete']
  42. carloan/change/<int:id> [name='carloan-change']
  43. shortGoldLoan/add [name='addGoldShortLoan']
  44. shortGoldLoan/Edit/<int:id> [name='EditGoldShortLoan']
  45. DeleteGoldShortLoan/remove/<int:id> [name='GoldShortLoan-delete']
  46. goldloan/view [name='GoldLoan']
  47. LongGoldLoan/add [name='addGoldLongLoan']
  48. LongGoldLoan/Edit/<int:id> [name='EditGoldLongLoan']
  49. DeleteGoldLongLoan/remove/<int:id> [name='GoldLongLoan-delete']
  50. RegularGoldLoan/add [name='addRegularGoldLoan']
  51. RegularGoldLoan/Edit/<int:id> [name='EditGoldRegularGoldLoan']
  52. DeleteGoldRegular/remove/<int:id> [name='GoldRegular-delete']
  53. DailyGoldLoan/add [name='AddDailyGoldLoan']
  54. DailyGoldLoan/Edit/<int:id> [name='EditDailyGold']
  55. DeleteDailyGold/remove/<int:id> [name='DeleteDailyGold-delete']
  56. goldrate/add [name='GoldRate-add']
  57. goldrate/Edit/<int:id> [name='EditRate']
  58. popup/add [name='Popup-add']
  59. popup/remove/<int:id> [name='popup-delete']
  60. popup/list [name='Popup-list']
  61. popup/change/<int:id> [name='popup-change']
  62. forex/Edit/<int:id> [name='EditForexRate']
  63. Adminforex/view [name='Adminforex']
  64. add/usedcar/ [name='add-used-car']
  65. usedcar/remove/<int:id> [name='usedcar-delete']
  66. usedcar/update/<int:id> [name='usedcar-update']
  67. usedcar/list [name='usedcar-list']
  68. usedcar/detail/<int:id> [name='usedcar-detail']
  69. Admin_usedcar/detail/<int:id> [name='Admin-usedcar-detail']
  70. sell/usedcar/ [name='sell-used-car']
  71. CarApprove/<int:id> [name='Car-approve']
  72. ^(?P<path>.*)$

The current path, index2.html, matched the last one.

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.