I've got three subdomains: dev.mydomain.com
, archive.mydomain.com
, and www.mydomain.com
.
Would it be possible to create a web.config
file that will map requests to a given subdomain to a folder sitting in the webroot that matches that subdomain?
E.g. if my D:\inetpub
folder contains dev\index.cfm
, archive\index.cfm
, and www\index.cfm
, i'd like to map requests to http://dev.mydomain.com/index.cfm
to the first, http://archive.mydomain.com/index.cfm
to the second, and http://www.mydomain.com/index.cfm
to the third.
Thanks for your consideration!