make a new separate urlconf (name it `config_urls.py` or something) for each
project `x/` and `y/`

make the urlconf in each of them something like this:

patterns = (
 (r'^x', include("urls")),
)

and the other file:

patterns = (
 (r'^y', include("urls")),
)

Then your app will be able to read it like you want `/admin/` instead of
`/x/admin/`

You also need to change your settings to use the new urlconf that you made
and point settings to the new urlconf.

You can also use the exact same project, but you need to have two settings
files and the two `config_urls.py` files for the different project
locations.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
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