Python Forum
Django Runserver - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Web Scraping & Web Development (https://python-forum.io/forum-13.html)
+--- Thread: Django Runserver (/thread-14142.html)



Django Runserver - ayaz786amd - Nov-16-2018

Hi

I am learning django but python environment setting is complicated. Here is the error when i run server and open 127.0.0.1:8000/admin

Page not found (404)
Request Method: GET
Request URL: http://127.0.0.1:8000/admin
Using the URLconf defined in mysite.urls, Django tried these URL patterns, in this order:

1 ^admin/
2 ^webapp/
The current path, admin, 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.


RE: Django Runserver - ayaz786amd - Nov-17-2018

I think the issue is with these codes
In Website/Webapp/urls.py:
from django.conf.urls import patterns, url
from . import views

urlpatterns = [
    url(r'$', views.index, name='index'),
]
In website\website\ urls.py
from django.conf.urls import patterns, include, url
from django.contrib import admin

urlpatterns = [
    url(r'^admin/', include (admin.site.urls)),
    url(r'^webapp/', include('webapp.urls')),
]