zl程序教程

您现在的位置是:首页 >  后端

当前栏目

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

django配置项目 创建 高级 url
2023-09-11 14:17:15 时间

修改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'),
)