themotleyfool / wagtail-automatic-redirects

Package to help with Wagtail URL redirects

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

wagtail-automatic-redirects

Package to help with Wagtail URL redirects. Wagtail comes with a redirects app which helps to manually create redirects in Wagtail admin. This helper app helps to automatically create redirects when the URL of Page is changed. Redirects will be created for the page and all its child pages automatically. This project uses the page revisions and publish signal to automate the redirects creation process.

Installation

pip install wagtail-automatic-redirects

Add the package to your project's settings

INSTALLED_APPS = [
    # ... Other apps
    "wagtail_automatic_redirects",
    "wagtail.contrib.redirects",
    # ... Other apps
]

Make sure the INSTALLED_APPS setting include "wagtail.contrib.redirects", app from Wagtail.

Also, check the MIDDLEWARE setting include

MIDDLEWARE = [
    # ... Other middlewares
    "wagtail.contrib.redirects.middleware.RedirectMiddleware",
    # ... Other middlewares
]

License

BSD

About

Package to help with Wagtail URL redirects

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Python 100.0%