作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在最终用户输入错误的 URL 时显示自定义 404 错误页面。我试过了,但我只得到 Django 默认 404 页面。我正在使用 Python 2.7.5 和 Django 1.5.4。
我的代码:
urls.py
from django.conf.urls import patterns, include, url
from mysite import views
handler404 = views.error404
urlpatterns = patterns('',
url(r'^$', 'mysite.views.home', name='home'),
)
views.py
from django.http import HttpResponse
from django.shortcuts import render
from django.template import Context, loader
def home(request):
return HttpResponse("welcome to my world")
def error404(request):
template = loader.get_template('404.html')
context = Context({'message': 'All: %s' % request,})
return HttpResponse(content=template.render(context), content_type='text/html; charset=utf-8', status=404)
我已将我的 404.html
页面放在模板目录中。如何处理?
最佳答案
自定义 URL 处理程序不适用于 DEBUG=True
。设置 DEBUG=False
它将起作用。 (您还需要设置 ALLOWED_HOSTS=['127.0.0.1']
)
关于python - 如何在 Django 中显示自定义 404.html 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22615572/
我是一名优秀的程序员,十分优秀!