Django网站制作根目录,巧用404,可访问根目录任意网页

原文链接:http://www.bianbingdang.com/article_detail/106.html

在制作网页过程中,网站需要格式各样的验证。比如百度站长、搜狗联盟的校验网站。不止如此,有时写一个静态页面,也没有必要再去搞一个路由出来。这个时候,想到Django的404页面的定义,所有的不存在的页面会被定向到404页面,那么就在这块加点逻辑。首先,再setting配置文件得到自己的根目录,我定义根目录在网站之下的root目录

 TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'bianbingdang/root'),]
]

在urls.py文件当中写入如下逻辑

 from django.conf import urls
from .views import page_not_found
urls.handler404 = page_not_found

在views.py定义逻辑如下,也就是说,当发现root目录下存在请求的文件时,就向浏览器返回该页面:

 import os
from django.shortcuts import render_to_response
from .settings import TEMPLATES
def page_not_found(request, **kwargs):
root_templates = os.listdir(TEMPLATES[0]['DIRS'][-1])
print(request.path[1:] in root_templates)
if request.path[1:] in root_templates:
print(request.path)
return render_to_response(request.path[1:])
return render_to_response('error/404.html')
上一篇:JS判断是否来自手机移动端的访问,并跳转


下一篇:Java学习 1.4——第一个Java程序:Hello World!