Here is urls.py
path('about/', about, name='about'),
If I visit /about
it gives 404 error, if if change it to path('about', about, name='about')
, then if I visit /about
works but /about/
gives 404 errors.
What am I doing wrong here, this wasn't not happening prior to Django 2.0