django将空白网址重定向到命名网址

gam*_*mer 1 python django url

我有我的网址:

url(r'^home/', HomeQuestionView, name='home_question') ,
Run Code Online (Sandbox Code Playgroud)

当我输入时,localhost:8000/home我得到我的主页,但是我想要的是当我输入时,我得到我的主页。我的意思是我想重定向到上面的主页网址,当用户仅输入我的网站像www.xyz.comwww.xyz.com/home

我不想这样配置

url(r'^', HomeQuestionView, name='home_question') ,
Run Code Online (Sandbox Code Playgroud)

提前感谢

cat*_*ran 6

使用通用的RedirectView

from django.views.generic.base import RedirectView

url(r'^$', RedirectView.as_view(url='/home/')),
Run Code Online (Sandbox Code Playgroud)