###前提・実現したいこと
Djangoのチュートリアルをやっています。
チュートリアルに従ってプログラムを書いていったのですが、実行すると "Page not found" とエラーが出て来てしまいます。
このエラーの原因を教えていただきたいです。
Djangoチュートリアル
( https://docs.djangoproject.com/ja/1.11/intro/tutorial01/ )
###発生している問題・エラーメッセージ
Page not found (404)
RequestMethod : GET
RequestURL : http://127.0.0.1:8000/
Using the URLconf defined in mysite.urls, Django tried these URL patterns, in this order:
1.^polls/
2.^admin/
The empty path 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.
###該当のソースコード
python3
#polls/views.py from django.http import HttpResponse def index(request): return HttpResponse("Hello, world. You're at the polls index.")
#polls/urls.py from django.conf.urls import url from . import views urlpatterns = [ url(r'^$', views.index, name='index'), ]
#mysite/urls.py from django.conf.urls import include, url from django.contrib import admin urlpatterns = [ url(r'^polls/', include('polls.urls')), url(r'^admin/', admin.site.urls), ]
###試したこと
python3 manage.py runserver で実行
###補足情報(言語/FW/ツール等のバージョンなど)
Django-ver1.11.5
python3.6.2
回答1件
あなたの回答
tips
プレビュー