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 redirect, just use a view that returns
HttpResponseRedirect('/myapp/').

Andreas

Reply via email to