Django 사용자 지정 404500 페이지

3149 단어 django
자세히 보기
     1.프로젝트 만들기
django-admin.py startproject HelloWorld

2. HelloWorld 프로젝트에 들어가서 관리합니다.py의 같은 디렉터리,templates 디렉터리를 만들고,templates 디렉터리에 404.html,500.html 두 파일.
3. settings를 수정합니다.py(1.)DEBUG가 False로 수정됨(2.)ALLOWED_HOSTS에서 지정한 도메인 이름 또는 IP를 추가합니다(3.)템플릿 경로'DIRS'지정: [os.path.join(BASE DIR,'templates')],
 
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = False
ALLOWED_HOSTS = ['localhost','www.example.com', '127.0.0.1']
 
TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [os.path.join(BASE_DIR, 'templates')],
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                'django.template.context_processors.debug',
                'django.template.context_processors.request',
                'django.contrib.auth.context_processors.auth',
                'django.contrib.messages.context_processors.messages',
            ],
        },
    },
]
4. 새로운views.py
from django.http import HttpResponse
from django.shortcuts import render_to_response
from django.views.decorators.csrf import csrf_exempt
@csrf_exempt
def hello(request):
    return HttpResponse('Hello World!')
@csrf_exempt
def page_not_found(request):
    return render_to_response('404.html')
@csrf_exempt
def page_error(request):
    return render_to_response('500.html')
5.urls를 수정합니다.py, 코드는 다음과 같습니다
from django.conf.urls import url
from django.contrib import admin
import HelloWorld.views as view
urlpatterns = [
    url(r'^admin/', admin.site.urls),
    url(r'^test$', view.hello),
]
handler404 = view.page_not_found
handler500 = view.page_error

좋은 웹페이지 즐겨찾기