How do I point a domain name to a Django url?
- by username2
I have a subdomain m.example.com that I want to point to the same location as example.com/mobile running on an apache2/django1.3 installation.
example.com is the landing page, and I have the urls.py configured such that urls that match /^mobile$/ will be served the mobile version of the page. I looked into <VirtualHost>, but I think it…