最佳答案
如何将不匹配任何其他 URL 的流量重定向到主页?
urls.py:
urlpatterns = patterns('',
url(r'^$', 'macmonster.views.home'),
#url(r'^macmon_home$', 'macmonster.views.home'),
url(r'^macmon_output/$', 'macmonster.views.output'),
url(r'^macmon_about/$', 'macmonster.views.about'),
url(r'^.*$', 'macmonster.views.home'),
)
目前,最后一个条目发送所有“其他”流量到主页,但我想通过 HTTP 301或 302重定向。