如何避免在Django中登陆页面重定向

时间:2015-01-30 18:28:47

标签: python django performance redirect

我有一个用例,当我使用http://localhost:5000点击django应用时,必须重定向到http://localhost:5000/target。我在views.py作为

这样做
def landing_page(request):
    """Index page for the application."""
    return HttpResponseRedirect(reverse('target'))

我希望避免此重定向,因为它存在按this的性能问题,但保留此行为。

有没有办法做到这一点。

0 个答案:

没有答案