标签: regex django python-2.7
我是python django 1.9中的新手,并尝试使用urls.py文件重定向,
这里我实际解释了我的尝试。
旧: www.abc.com/c.aaa.html,www.abc.com/p.aaa.html和www.abc.com/books2
只需重定向到主页,如www.abc.com
url(r'/c.*$', include('apps.urls'),name='home'), url(r'/p.*$', include('apps.urls'),name='home')
答案 0 :(得分:1)
尝试使用django' RedirectView。例如,你可以这样做:
RedirectView
url(r'/c.aaa.html$', RedirectView.as_view(url='/'), name='go-to-home'),
查看this和this文档资料,了解有关如何在django中进行重定向的信息。