Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 554 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 554 Bytes

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',
]