我有一个项目,其根 url conf 内容是:
from django.conf.urls import patterns, include, url
import funnytest
urlpatterns = patterns(
url(r'^funnytest/', include('funnytest.urls')),
url(r'^helloworld/', funnytest.views.hello),
)
funtest是这个项目的一个app,在funnytest中我写了一个模块urls.py来配置这个app的请求:
from django.conf.urls import patterns, include, url
from views import *
urlpatterns = patterns(
url(r'^hello/$', hello),
)
当我访问 localhost/funnytest/hello/ 时,返回一个 dispath 错误,表示没有这样的模式
当我访问 localhost/helloworld 时,它运行良好。
呢,应该如何配置~