/django-redirect-to-non-www

Redirect www URL addresses to non-www

Primary LanguagePythonMIT LicenseMIT

django-redirect-to-non-www

Redirects www URL address to non-www.

Installation

pip install django-redirect-to-non-www
pip install git+https://git@github.com/lukasvinclav/django-redirect-to-non-www.git

Configuration

Open your settings file and append middleware redirect_to_non_www.middleware.RedirectToNonWww at the end of MIDDLEWARE list.

MIDDLEWARE = [
    # Other middleware classes
    'redirect_to_non_www.middleware.RedirectToNonWww',
]