django之创建第7-1个项目-url配置高级

Posted Xiao|Deng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django之创建第7-1个项目-url配置高级相关的知识,希望对你有一定的参考价值。

修改urls.PY文件

# -*- coding: UTF-8 -*-
from django.conf.urls import patterns, include, url

# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns(blog.views,
    # Uncomment the admin/doc line below to enable admin documentation:
    url(r^admin/doc/, include(django.contrib.admindocs.urls)),

    # Uncomment the next line to enable the admin:
    url(r^admin/, include(admin.site.urls)),
    #url(r‘^$‘, ‘blog.views.index‘),
    url(r^blog/index/$, index),
    url(r^blog/time/$, time),
)

 

以上是关于django之创建第7-1个项目-url配置高级的主要内容,如果未能解决你的问题,请参考以下文章