Try "url(r'^/', include('data.urls'))," in url_patterns. This should do what you want.
Alternatively, you can set a simple view on r'^$' that will redirect to your main app.
On 31 Jan 2017 1:09 p.m., "Thames Khi" <thameskhi@gmail.com> wrote:
I followed a simple tutorial to create a sample application in DJango. Here is my code for urls.py in the root folder:--from django.conf.urls import url, includefrom django.contrib import admin#from data import viewsurlpatterns = [url(r'^data/', include('data.urls')),url(r'^admin/', admin.site.urls),I get this error:Page not found (404)
Request Method: GET Request URL: http://<my IP>/ Using the URLconf defined in
stockprices.urls
, Django tried these URL patterns, in this order:
- ^data/
- ^admin/
The current URL,
, didn't match any of these.
You're seeing this error because you have
DEBUG = True
in your Django settings file. Change that toFalse
, and Django will display a standard 404 page.
The app http://<my IP>/data/ works fine.
If I remove the line: url(r'^data/', include('data.urls')),
then the root app works a treat:
It worked!
Congratulations on your first Django-powered page.
Is there a way to solve this or is there a way to redirect the page to another app? I really do not want to give out a website address with <my url>/dataThank you very much.Khi
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com .
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users .
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/05cf9421- .5481-4e6a-b1a9-0ae874dbe860% 40googlegroups.com
For more options, visit https://groups.google.com/d/optout .
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAEuG%2BTYiuTtONQc%3DuH5tXEmN6cFg9xzw_t5umuhx5HeCBX70Fg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
No comments:
Post a Comment