他のどの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のいずれかを介してリダイレクトしたいと思います。