Skip to main content

A Django App to make sure old URLs work with new URLs.

Project description

Django Permalinks

This Django App acts as an internal redirector. Most likely use cases are when you have changed your URL scheme for a few pages, but your visitors still have the Old URL - this app can help you redirect the old scheme to the new one.

Free URL Shortner

This Django app also provides a free URL shortner. In order to use it:

  1. Use the Django Admin to make a new object of Permalinks.
  2. While creating an object, you should see a link which says "Generate a random string". Click it.
  3. Click the "Use this string" link when it appears.
  4. Enter the long URL in the 'NEW URL' box above.

Installation

Install from PyPI:

pip install django-permalinks

Configurations

  1. Add permalinks to your list of INSTALLED_APPS in settings.py:

    INSTALLED_APPS = [
        ...
        'permalinks',
        ...
    ]
    
  2. Add the permalinks URLs to urls.py of your base app on the top of the list:

    urlpatterns = [
      url('', include('permalinks.urls')),
      ...
    ]
    
  3. Add the permalinks middleware to settings.py on the top of the list:

    MIDDLEWARE = [
       'permalinks.middleware.main.PermalinksMiddleware',
       ...
    ]
    
  4. Run manage.py migrate to create the required table for the permalinks model.

  5. Create your permalinks objects in your Django admin interface.

  6. Test your OLD URLs and their responses by visiting them.

  7. Enjoy a smooth URL migration!

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-permalinks-0.1.1.tar.gz (4.3 kB view hashes)

Uploaded Source

Built Distribution

django_permalinks-0.1.1-py3-none-any.whl (7.5 kB view hashes)

Uploaded Python 3

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