divanov11 / proshop_django

403 stars 426 forks source link

Prod - error not found after page refresh #25

Open aynnaka1 opened 2 years ago

aynnaka1 commented 2 years ago

Page not found (404) on page refresh in production

aynnaka1 commented 2 years ago

I found a solution just replace path('', TemplateView.as_view(template_name='index.html')) with re_path('.*', TemplateView.as_view(template_name='index.html')) .. and place it at the end