Not able to get the requested URL in django new version

1.1k Views Asked by At

When the default url http://127.0.0.1:8000/ is given then the app is able to get the default page but when I tried to connect with the pages using http://127.0.0.1:8000/customer/ I'm getting this error as a traceback

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

admin/
The current path, customer/, 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.

Here is my code crm/urls.py--->

from django.contrib import admin
from django.urls import path,include


urlpatterns = [
    path('admin/', admin.site.urls),
    path('', include('accounts.urls')),

]

now accounts/urls.py--->

from django.urls import path
from . import views


urlpatterns = [
    path('', views.home,name="ShopHome"),
    path('products/', views.products,name="ProductsHome"),
    path('customer/', views.customer,name="customerHome"),
]

Now accounts/view.py--->

from django.shortcuts import render
from django.http import HttpResponse



def home(request):
    return HttpResponse('home')

def products(request):
    return HttpResponse('products')

def customer(request):
    return HttpResponse('customer')

and this is myinstalled apps in setting-->

# Application definition

INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'accounts',
]

Please help me out guys I'm struck here for 2 days

1

There are 1 best solutions below

13
On

You need to point to the urls of the accounts app without a leading accounts/:

urlpatterns = [
    path('admin/', admin.site.urls),
    #    ↓↓ empty string
    path('', include('accounts.urls')),
]

otherwise you can access the customer view with:

http://127.0.0.1:8000/accounts/customer/

but that is likely not what you want.