我在urls.py文件中有以下代码
urlpatterns = patterns('ecomstore.accounts.views',
(r'^register/$', 'register', {'template_name':'registration/register.html', 'SSL':settings.ENABLE_SSL}, 'register'),
(r'^my_account/$','my_account', {'template_name':'registration/my_account.html'},'my_account'),
(r'^order_details/(?P<order_id>[-\w]+)/$', 'order_details', {'template_name':'registration/order_details.html'}, 'order_details'),
(r'^order_info//$', 'order_info', {'template_name':'registration/order_info.html'},'order_info'),
)
除了/register/
之外,所有重定向都有效,即/my_account/
,/order_info//
等。我发现404页面未找到错误,我不确定为什么这与其他页面有任何不同。
它正在我的开发服务器上运行,但如果与它有任何关系,那么就不会出现apache。