博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
django之创建第7-1个项目-url配置高级
阅读量:4931 次
发布时间:2019-06-11

本文共 619 字,大约阅读时间需要 2 分钟。

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

 

转载于:https://www.cnblogs.com/dengyg200891/p/5353590.html

你可能感兴趣的文章
LDAP1-安装部署LDAP服务
查看>>
Crystal Reports拉报表报错:Error detected by database DLL
查看>>
border-radius讲解1
查看>>
CLR via C#学习笔记-第九章-参数和返回类型的设计规范
查看>>
dom4j解析XML文件(3)—XML文件写入
查看>>
vi作者:Bill Joy
查看>>
0139-文件操作之二进制方式打开模式(一).abb
查看>>
自定义分享功能
查看>>
基于Attribute的Web API路由设置
查看>>
vue使用中的随笔
查看>>
use sql trigger call java function
查看>>
这个人很牛
查看>>
Unity 新老版本动画文件设置
查看>>
关于win7 下双击不能打开jar 文件
查看>>
学习进度(2016.5.29)
查看>>
Visual studio 创建项目失败vstemplate
查看>>
keras 上添加 roc auc指标
查看>>
Linux命令(二)关机重启
查看>>
[OpeCV] highgui头文件
查看>>
C# 获取远程图片
查看>>