Skip to content

ribx/django-regex-redirects

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-regex-redirects

Django redirects, with regular expressions. It is a modified version of django.contrib.redirects.

Features

  • Redirect your visitors using regular expressions
  • Configurable via the admin
  • Counts the number of visitors
  • Redirects are exportable as .csv

Install

python setup.py install

Add regex_redirects to your INSTALLED_APPS:

INSTALLED_APPS = (
  ...
  'regex_redirects',
  ...
)

Add the middleware to your MIDDLEWARE_CLASSES:

MIDDLEWARE_CLASSES = [
  'regex_redirects.middleware.RedirectFallbackMiddleware'
  ...
]

Run manage.py syncdb and you're good to go!

About

Django redirects, with regular expressions

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%