'Django remove trailing slashes - urls or redirect
I'm trying to remove the trailing slashes in my urls
or make redirection happen if a slash is added at the end. I tried to do it on resources from the Internet but it does not work for me. I guess I'm doing something wrong.
urls.py - app
app_name = 'shop'
urlpatterns = [
# product
path('', views.product_list, name='product_list'),
path('show/<slug:slug>', views.product_show, name='product_show'),
path('<slug:category>', views.product_list, name='lst_by_ctgry'),
path('<slug:category>/<slug:subcategory>', views.product_list, name='lst_by_subctgry'),
path('<slug:category>/<slug:subcategory>/<slug:kind>', views.product_list, name='lst_by_knds'),
# info - these urls doesn't work without slashes. works only with slashes
path('pad', views.pad, name='pad'),
path('guarantee', views.guarantee, name='guarantee'),
path('contacts', views.contacts, name='contacts'),
path('about', views.about, name='about'),
path('privacy', views.privacy, name='privacy')
]
urls.py - project
urlpatterns = [
path('', include('orders.urls')),
path('', include('cart.urls')),
path('', include('shop.urls')),
path('admin/', admin.site.urls),
]
settings.py
APPEND_SLASH = False
REMOVE_SLASH = True
MIDDLEWARE = [
...
'django.middleware.common.CommonMiddleware',
...
]
Сan you give an example please how can i remove trailing slashes in all urls or get redirect
Solution 1:[1]
Though it's recommended to use the trailing slash. But if you don't want to have that, you can change it in settings.py
file of your project.
settings.py
APPEND_SLASH = False
The default value is True
.
See in the docs.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | David Wolf |