Hello,
I need to redirect all requests to one domain and redirect it to another. However, I need it to redirect with all the parameters.
I can put a php page on a Netfirms.com domain.
I have a main domain (e.g.
www.LongDomainName.com) and a short domain (e.g.
www.shrtDm.com).
I have recently moved my corporate website into a fully hosted environment. Previously, we hosted the proprietary CMS. In my setup, I had IIS forward all requests for
www.shrtdm.com to
www.LongDomainName.com, including all parameters after the domain.
So IIS would redirect requests for
http://www.shrtdm.com/contactus to
http://www.LongDomainName.com/contactus. It was a wildcard redirect, so it would work for any URL, not just predesignated ones, such as:
Redirect request for:
www.shrtDm.com/page.aspx?pid=10321
to:
www.LongDomainName.com/page.aspx?pid=10321
Thank You.