Re: I need your helf, I got this below error, after post the django server 8000 on google browser. Please correct my django project code?

2023-07-23 Thread Fikayo Soetan
Good day, In the project urlpatterns it's meant to be ""(two quotation marks) instead of "(one). Also, in the app you have not configured any path to handle the http://127.0.0.1:8000/. What you have is for the other views like signup and all. You need a base one like path("", ... Adjust that a

I need your helf, I got this below error, after post the django server 8000 on google browser. Please correct my django project code?

2023-07-23 Thread AKHIL KORE
Page not found (404) Request Method: GET Request URL: http://127.0.0.1:8000/ Using the URLconf defined in question_post.urls, Django tried these URL patterns, in this order: 1.admin/ 2.signup/ [name='signup'] 3.login/ [name='login'] 4.logout/ [name='logout'] 5.post_question/ [name='post_question']