如何将旧网址重定向到新网址django 1.9

时间:2016-05-03 11:14:31

标签: 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')

1 个答案:

答案 0 :(得分:1)

尝试使用django' RedirectView。例如,你可以这样做:

url(r'/c.aaa.html$', RedirectView.as_view(url='/'), name='go-to-home'),

查看thisthis文档资料,了解有关如何在django中进行重定向的信息。