GMgKe586q6suSQnyqZLlGCooeWM

Pages

Search

Monday, April 18, 2011

Django - Redirection

This is a simple example of redirection mechanism in Django.
from django.http import HttpResponseRedirect
def my_view(request):
    return HttpResponseRedirect('http://google.com')
Share/Bookmark

No comments:

Post a Comment