web-dev-qa-db-ja.com

Django 404エラーページが見つかりません

私のプロジェクトの名前はhomefoodで、runserverを実行するとこのエラーが発生します。このエラーを修正する方法は誰にでもわかります。

Page not found (404)

Request Method: GET

Request URL:    http://127.0.0.1:8000/

Using the URLconf defined in homefood.urls, Django tried these URL patterns, in this order:

^foodPosts/

^admin/

The current URL, , didn't match any of these.

You're seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.

私のsettings.pyファイルは次のようになります...

import dj_database_url
"""
Django settings for homefood project.

# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
import os
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
STATIC_ROOT = 'staticfiles'


# SECURITY WARNING: keep the secret key used in production secret!


# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True

TEMPLATE_DIRS = (

    os.path.join(BASE_DIR, 'templates'),
)


 TEMPLATE_DEBUG = True

ALLOWED_HOSTS = ['*']       # Allow all Host headers


# Application definition

INSTALLED_APPS = (
'Django.contrib.admin',
'Django.contrib.auth',
'Django.contrib.contenttypes',
'Django.contrib.sessions',
'Django.contrib.messages',
'Django.contrib.staticfiles',
'Django.contrib.humanize',
'Django.contrib.sites',
'foodPosts',
'registration',
'profiles',
'homefood',

)

MIDDLEWARE_CLASSES = (
'Django.contrib.sessions.middleware.SessionMiddleware',
'Django.middleware.common.CommonMiddleware',
'Django.middleware.csrf.CsrfViewMiddleware',
'Django.contrib.auth.middleware.AuthenticationMiddleware',
'Django.contrib.messages.middleware.MessageMiddleware',
'Django.middleware.clickjacking.XFrameOptionsMiddleware',
)

ROOT_URLCONF = 'homefood.urls'

WSGI_APPLICATION = 'homefood.wsgi.application'



#=  dj_database_url.config()
#'default': dj_database_url.config(default='mysql://localhost')}
DATABASES = {
'default': {
    'ENGINE': 'Django.db.backends.mysql',
    'NAME': 'Django_db',
    'USER': 'root',
    'PASSWORD': '',
    'Host': '',
    'PORT': '',
}
}#= dj_database_url.config()

# Honor the 'X-Forwarded-Proto' header for request.is_secure()
SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')

LANGUAGE_CODE = 'en-us'

TIME_ZONE = 'America/New_York'

USE_I18N = True

USE_L10N = True

USE_TZ = True

#Django-registration additions, for account registration
ACCOUNT_ACTIVATION_DAYS=7
EMAIL_Host = 'localhost'
EMAIL_PORT = 102
EMAIL_Host_USERNAME = ''
EMAIL_Host_PASSWORD = ''
EMAIL_USE_TLS = False
DEFAULT_FROM_EMAIL = '[email protected]'

STATIC_URL = '/static/'


STATICFILES_DIRS = (
os.path.join(BASE_DIR, 'static'),

)                                           #static asset configuration

私のhomefoodフォルダにある私のurls.pyは

from Django.conf.urls import patterns, include, url




from Django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('',
   # Examples:
  # url(r'^$', 'homefood.views.home', name='home'),
  # url(r'^blog/', include('blog.urls')),


  url(r'^foodPosts/',include('foodPosts.urls')),
  url(r'^admin/', include(admin.site.urls)),


 )

私の問題はurls.pyまたはsettings.pyのいずれかにあると思いますが、よくわかりません。どんな助けでも大歓迎です。ありがとう。

11
user3014093

http://127.0.0.1:8000/のURLパターンをまだ定義していないため、404を取得しています。

http://127.0.0.1:8000/admin/の管理サイトとhttp://127.0.0.1:8000/foodPosts/のフード投稿を表示できるはずです。

ホームページのURLパターンを追加するには、urls.pyの次のエントリのコメントを外し、homefood.views.homeを使用するビューへのパスに置き換えます。

url(r'^$', 'homefood.views.home', name='home'),
23
Alasdair

基本的に、プロジェクトへのエントリを追加するためのこれに対する答えrls.pyファイルを空白の例として:

path('', include('MYAPP.urls')),

そしてアプリでrls.pyあなたはこれを追加します

url('MYAPP', views.index),

settings.pyにアプリを含めることを確認してくださいアプリにrls.pyを含めることも確認してくださいビューをインポートしてください

0
Fernando Silva