Skip to main content

Django's built-in redirect app with some extras.

Project description

Django's built-in redirect app with some extras added.
============

Based on Django's built-in redirect app with some extras added.
Starting point for this app was https://github.com/django/django/tree/master/django/contrib/redirects. Now with these extra features:

* Simple hit counter on each redirect rule

Installation
------------

To get the latest stable release from PyPi

pip install django-redirect-plus

To get the latest commit from GitHub

pip install -e git+git://github.com/arteria/django-redirect-plus.git#egg=redirect_plus




Add ``redirect_plus`` to your ``INSTALLED_APPS``

INSTALLED_APPS = (
...,
'django.contrib.redirects',
'redirect_plus',
)


Update your ``MIDDLEWARE_CLASSES`` in your project settings

MIDDLEWARE_CLASSES = (
...
# 'django.contrib.redirects.middleware.RedirectFallbackMiddleware' , # <= comment this
'redirect_plus.middleware.RedirectFallbackMiddleware', # <= replace by /add this middleware
...
)



Don't forget to sync your database


./manage.py syncdb




Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-redirect-plus-0.0.1.tar.gz (6.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page