A modified version of django.contrib.redirects with multilingual target URLs.
Project description
################
Aldryn Redirects
################
This is a modified version of Django's ``django.contrib.redirects`` app that
supports language-dependent target URLs, using ``django-parler``.
This is useful for cases in which another middleware strips the language
prefix from the URL, like django CMS. It allows to define different urls to
redirect to, depending on the user's language.
************
Installation
************
Aldryn Platform Users
#####################
To install the addon on Aldryn, all you need to do is follow this
`installation link <https://control.aldryn.com/control/?select_project_for_addon=aldryn-redirects>`_
on the Aldryn Marketplace and follow the instructions.
Manually you can:
#. Choose a site you want to install the Addon to from the dashboard.
#. Go to Apps > Install App
#. Click Install next to the Aldryn Redirects app.
#. Redeploy the site.
Manual Installation
###################
```bash
pip install aldryn-redirects
```
Follow the `setup instructions for django-parler <http://django-parler.readthedocs.org/>`_.
```python
# settings.py
INSTALLED_APPS += [
'parler',
'aldryn_redirects'
]
# add the middleware somewhere near the top of MIDDLEWARE_CLASSES
MIDDLEWARE_CLASSES.insert(
0, 'aldryn_redirects.middleware.RedirectFallbackMiddleware')
```
Aldryn Redirects
################
This is a modified version of Django's ``django.contrib.redirects`` app that
supports language-dependent target URLs, using ``django-parler``.
This is useful for cases in which another middleware strips the language
prefix from the URL, like django CMS. It allows to define different urls to
redirect to, depending on the user's language.
************
Installation
************
Aldryn Platform Users
#####################
To install the addon on Aldryn, all you need to do is follow this
`installation link <https://control.aldryn.com/control/?select_project_for_addon=aldryn-redirects>`_
on the Aldryn Marketplace and follow the instructions.
Manually you can:
#. Choose a site you want to install the Addon to from the dashboard.
#. Go to Apps > Install App
#. Click Install next to the Aldryn Redirects app.
#. Redeploy the site.
Manual Installation
###################
```bash
pip install aldryn-redirects
```
Follow the `setup instructions for django-parler <http://django-parler.readthedocs.org/>`_.
```python
# settings.py
INSTALLED_APPS += [
'parler',
'aldryn_redirects'
]
# add the middleware somewhere near the top of MIDDLEWARE_CLASSES
MIDDLEWARE_CLASSES.insert(
0, 'aldryn_redirects.middleware.RedirectFallbackMiddleware')
```
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
aldryn-redirects-1.0.0.tar.gz
(22.0 kB
view hashes)
Built Distribution
Close
Hashes for aldryn_redirects-1.0.0-py2-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2acc640aadf15768fc4fa95d1063afa94d86bf5494e09dd754aad1dc74fde12a |
|
MD5 | 031a9d0bbc684a953a4b27cf2ed23e05 |
|
BLAKE2b-256 | ed6045df21de11a5ab4816693fe599bec09f4123e10706da1067469da43a8b1a |