| Home » Categories » Multiple Categories |
How do I redirect a subdomain to a subdirectory? |
|
Article Number: 85 | Rating: Unrated | Last Updated: Tue, May 1, 2012 at 11:17 PM
|
When the requests are redirected using an ASP file, the URL in browser for redirected domains will show the correct domain name and the directory name where the request is being redirected. You can also redirect the requests to a specific file.
For example :
http://subdomain1.YourHostedDomainName.com redirect to http://subdomain1.YourHostedDomainName.com/subdomain1
http://subdomain2.YourHostedDomainName.com redirect to http://subdomain2.YourHostedDomainName.com/subdomain2
The following is a sample script that you can use to redirect a subdomain. You will need to place it as default document on your document root.
<%
If InStr( UCase(Request.ServerVariables("SERVER_NAME")), UCase("subdomain1.YourHostedDomainName.com") ) > 0 Then
Response.Redirect("/subdomain1")
ElseIf
InStr( UCase(Request.ServerVariables("SERVER_NAME")), UCase("subdomain2.YourHostedDomainName.com") ) > 0 Then Response.Redirect("/subdomain2")
ElseIf
InStr( UCase(Request.ServerVariables("SERVER_NAME")), UCase("subdomain3.YourHostedDomainName.com") ) > 0 Then
Response.Redirect("/subdomain3/home.asp")
End If
%>
NOTE:
1. Replace subdomain#.YourHostedDomainName.com with your actual subdomain URL.
2. Replace /subdomain# with your actual subdirectory name
3. In the last redirection statement in the example, we show how to redirect to a specific file
|
Attachments
There are no attachments for this article.
|
I get an error Server.CreateObject Failed when I try to use CDONTs. What can I do?
Viewed 3260 times since Tue, May 1, 2012
How do I query MySQL Database in PHP ?
Viewed 3731 times since Tue, May 1, 2012
I cannot see my website. What should I do?
Viewed 4142 times since Thu, May 3, 2012
My application pool stops working. What is wrong with my site?
Viewed 13650 times since Sun, Feb 15, 2015
How To Solve Problem with Connection String on EF (Entity Framework) 4 or above
Viewed 32509 times since Mon, Apr 1, 2013
How to Deploy and host .Net Core 2 and Angular 6 app
Viewed 13715 times since Tue, Oct 23, 2018
I receive this error message: "Directory Listing Denied. This Virtual Directory does not allow contents to be listed."
Viewed 11044 times since Mon, Apr 30, 2012
Do you allow custom COM components?
Viewed 3233 times since Tue, May 1, 2012
Why do I suddenly receive the error message: "Compiler Error Message: The compiler failed with error code XXXXXXXXX"?
Viewed 17973 times since Wed, Feb 17, 2016
How to Solve an Error Message "Validation of viewstate MAC failed"
Viewed 9959 times since Tue, Apr 2, 2013
|
