5 lines
148 B
Python
5 lines
148 B
Python
# Create your views here.
|
|
from django.http import HttpResponseRedirect
|
|
|
|
def index(request):
|
|
return HttpResponseRedirect("http://blog.mofca.in")
|