我有一个用例,当我使用http://localhost:5000
点击django应用时,必须重定向到http://localhost:5000/target
。我在views.py
作为
def landing_page(request):
"""Index page for the application."""
return HttpResponseRedirect(reverse('target'))
我希望避免此重定向,因为它存在按this的性能问题,但保留此行为。
有没有办法做到这一点。