I think I almost get it.

If I configure Apache as you suggest, and a user surfs to
"www.mysite.com"
what url gets 'passed' to urls.py?
Will that url match:
1:    (r'^$', 'mysite.myapp.views.index'),
or
2:  (r'^myapp/$', 'mysite.myapp.views.index'),
or
3:  (r'^index$', 'mysite.myapp.views.index'),

The tutorial implies #2, but doesn't that require the Apache
configuration (or maybe .htaccess, (or whatever)) to know the app
name?


Karl


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to