Re: Problems configuring urls.py to respond to /

2005-10-26 Thread Andreas Stuhlmüller
Hi Clint, > How would I set up my urls.py to redirect people who attempt to access the > root URL of the site, (ie. http://mydomain.com/) to the application I want > people to use (ie. http://mydomain.com/myapp/) The regex that catches the root URL is ^/?$ (r'^/?$' in urls.py). In order to redir

Problems configuring urls.py to respond to /

2005-10-26 Thread Clint Ecker
Just a quick question, I played with this last night, but I didn't have much luck. How would I set up my urls.py to redirect people who attempt to access the root URL of the site, (ie. http://mydomain.com/) to the application I want people to use (ie. http://mydomain.com/myapp/) For whatever reas