What is the best way to redirect requests in the given way:
- Requests to subdomains should be rerouted to a site in a subdirectory
example: blog.myDomain.com/img/logo.jpg should be rerouted to myDomain.com/blog/img/logo.jpg - the url in the browser should remain (so no redirect) blog.myDomain.com/img/logo.jpg should remain that way, just serve up different content.
- Each of those top level subdirectories will contain a seperate application
- The sites will have seperate code bases so cannot reside in one project
- The sites will be hosted on shared hosting
- on localhost they should still be runable as separate sites
- The sites themselve will regard their directory as the root so that relative urls will still work
I think the easiest (and cleanest) solution would be to use virtual directories and host headers, but neither winhost nor discountasp allow this. I tried fooling around with url rewrite and base tags, but being the horrible sys-admin I am, ended up nowhere.