我有我的网址:
url(r'^home/', HomeQuestionView, name='home_question') ,
Run Code Online (Sandbox Code Playgroud)
当我输入时,localhost:8000/home我得到我的主页,但是我想要的是当我输入时,我得到我的主页。我的意思是我想重定向到上面的主页网址,当用户仅输入我的网站像www.xyz.com不www.xyz.com/home
我不想这样配置
url(r'^', HomeQuestionView, name='home_question') ,
Run Code Online (Sandbox Code Playgroud)
提前感谢
使用通用的RedirectView:
from django.views.generic.base import RedirectView
url(r'^$', RedirectView.as_view(url='/home/')),
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
944 次 |
| 最近记录: |