エラーメッセージは次のとおりです。
Using the URLconf defined in Blog.urls,
Django tried these URL patterns, in this order:
^admin/doc/
^admin/
^post/ ^post/(?P<post_id>\d+)/$
The current URL, post/1458/, didn't match any of these.
なんで?post/1485/
マッチすると思います^post/(?P<post_id>\d+)/$
私のルートURL構成は次のとおりです。
urlpatterns = patterns('',
...
url(r'^post/', include('posts.urls')),
)
次に、私posts/urls.py
は:
urlpatterns = patterns('',
...
url(r'^post/(?P<post_id>\d+)/$', 'post.views.post_page'),
)