Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The current URL, app/, didn't match any of these

I'm a newbie in Django and just started looking at it before a day by installing Django 1.10 on my local.

I've followed all the instructions of this link https://docs.djangoproject.com/en/dev/intro/tutorial01/. However I'm continuously getting this error:

Page not found (404) Request Method:    GET Request URL:    http://127.0.0.1:8000/polls/

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

    ^admin/

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

I've created polls app to getting started.

To make a start, I went with view.py, here is the code:

polls/views.py

from django.shortcuts import render

# Create your views here.

from django.http import HttpResponse


def index(request):
    return HttpResponse("Hello World!")

Here is my code for urls.py:

polls/urls.py

from django.conf.urls import patterns, url

from . import views

urlpatterns = patterns('',
    url(r'^$', views.index, name='index'),
)

And here is the urls.py in root:

mysite/urls.py

from django.conf.urls import patterns,include, url
from django.contrib import admin

urlpatterns = patterns('',
    url(r'^polls/', include('polls.urls')),
    url(r'^admin/', include(admin.site.urls)),
)

I've spent good piece of time to find out the solution, found that this question has been asked for many times,so tried with those solutions as well but none of them worked for me.

I can't find out what I'm missing here so please draw my attention to the gap.

like image 701
Dhaval Avatar asked Dec 11 '15 10:12

Dhaval


4 Answers

I think you have edited the wrong file when trying to change the root url config.

Make sure you are editing the root url config in mysite/mysite/urls.py (the directory containing settings.py) not mysite/urls.py (the directory containing manage.py).

As general advice, install the latest release, currently 1.9. Don't use 1.10, which is under development. Make sure that you are following the tutorial for 1.9, because the tutorial changes for different versions. For example, your mysite/urls.py doesn't match the tutorial for 1.9, as the urlpatterns should be:

urlpatterns = [
    url(r'^polls/', include('polls.urls')),
    url(r'^admin/', admin.site.urls),
]
like image 134
Alasdair Avatar answered Nov 07 '22 12:11

Alasdair


In settings.py you have a setting name INSTALLED_APPS-

Adds you app i.e. polls to it.

INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    ....
    'polls',
]
like image 31
utkbansal Avatar answered Nov 07 '22 10:11

utkbansal


It's working. Go to your url bar and type your app name:

http://127.0.0.1:8000/home

My app name is home. It will work.

If you want to set your app as your default page then import views from your app.

Like

from home import views

then write

url(r'^$', views.index),

inside.

It will set the views as your default page

http://127.0.0.1:8000/

When you type this it will redirect to your views.

like image 1
Rocky Ð Häčkęrboy Avatar answered Nov 07 '22 10:11

Rocky Ð Häčkęrboy


change the mysite/url

    from django.conf.urls import patterns,include, url
    from django.contrib import admin

    urlpatterns = patterns('',
    url(r'^&', include('polls.urls')),
    url(r'^admin/', include(admin.site.urls)),
    )

Then run your server and visit 127.0.0.1/8000. This should take you to the index of ur website.

or you leave your code as it is and run 127.0.0.1/8000/polls on your browser

like image 1
Bello Tomi Avatar answered Nov 07 '22 10:11

Bello Tomi