我在 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 page not found 错误,我不确定为什么这与其他的有什么不同。
它正在我的开发服务器上运行,但由于某种原因,它不能在 apache 上运行,如果这与它有任何关系的话。