An open API service indexing awesome lists of open source software.

https://github.com/redsolution/django-redirect-middleware

Does unconditional redirect's rather than Django's contrib module
https://github.com/redsolution/django-redirect-middleware

Last synced: 10 months ago
JSON representation

Does unconditional redirect's rather than Django's contrib module

Awesome Lists containing this project

README

          

======================================
Django Redirect Middleware
======================================

Quick Start
```````````

Add ``django.contrib.redirects`` to INSTALLED_APPS ::

INSTALLED_APPS = [
...
'django.contrib.redirects',
...
]

Add ``redirects.middleware.RedirectMiddleware`` to MIDDLEWARE_CLASSES ::

MIDDLEWARE_CLASSES = [
...
'redirects.middleware.RedirectMiddleware',
...
]

Synchronize your database models run ``django syncdb``