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.

link|improve this question

73% accept rate
I would give URL rewriting a 2nd chance. Looking at your requirements, its almost identical to what i recently implemented in an ASPX based site hosted in IIS 7.5. Use a HttpModule to execute the "RewritePath" method. – Marvin Smit Dec 7 '10 at 19:38
Care to share your work (create a gist.github.com maybe?) – Boris Callens Dec 8 '10 at 15:38
Or maybe you have some nice URL rewrite documentation? – Boris Callens Dec 8 '10 at 15:38
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.