How do I accomplish a simple redirect (e.g. cflocation in ColdFusion, or header(location:http://) in django)?
|
feedback
|
|
It's simple:
More info in the official Django docs Update There is apparently a better way of doing this in Django now using Example -
There is more in the generic views documentation. Credit - Carles Barrobés. | |||||||||
feedback
|
|
Depending on what you want (i.e. if you do not want to do any additional pre-processing), it is simpler to just use Django's redirect_to generic view:
See http://docs.djangoproject.com/en/dev/ref/generic-views/#django-views-generic-simple-redirect-to for more advanced examples | |||||||||||
feedback
|
|
There's actually a simpler way than having a view for each redirect - you can do it directly in
A target can be a callable as well as a string, which is what I'm using here. | |||
feedback
|
|
Since Django 1.1, you can also use the simpler redirect shortcut:
It also takes an optional permanent=True keyword argument. | |||
|
feedback
|
|
With Django version 1.3, the class based approach is:
This example lives in in urls.py | |||
|
feedback
|