Django 基础:4.5 映射...找不到页面 (404)

Django Basics: 4.5 Mappings... Page not found (404)

请原谅,我是 Django 和 Python 的新手。

我正在阅读 'Django Basics' 教程 (http://www.tangowithdjango.com/book17/chapters/setup.html)

我已经完成了 4.5 映射部分,这是我的代码,与网站的教程代码相同:

from django.conf.urls import include, url, patterns
from django.contrib import admin

urlpatterns = patterns('',
# Examples:
# url(r'^$', 'tango_with_django_project_17.views.home', name='home'),
# url(r'^blog/', include('blog.urls')),

url(r'^admin/', include(admin.site.urls)),
url(r'^rango/', include('rango.urls')), # ADD THIS NEW TUPLE!
)

最后我 运行 我的服务器在 127.0.0.1.8000 并得到错误:

Page not found (404)

Using the URLconf defined in tango_with_django_project.urls, Django tried these 
URL patterns, in this order:
^admin/
^rango/
The current URL, , didn't match any of these.

起初我不得不导入 'patterns' 来阻止 NameError,但现在我的页面根本不会显示。有谁知道我哪里出错了?

我正在使用: Django 1.8(www.tangowithdjango.com 使用 1.7,我应该改成这个吗?)

Python 2.7.5

您没有阅读本节的其余部分:

Restart the Django development server and visit http://127.0.0.1:8000/rango.