Ron
06-20-2009, 06:09 AM
I use a program called ISAPI Rewrite to standardize my websites as follows:
If someone goes to http://MyDomain, they are given http://www.MyDomain instead.
The code I am using for this is:
RewriteCond Host: (?!www„.)(.*)
RewriteRule (.*) http„://www.$1$2 [I,RP]
I did not write this code to begin with and am not sure how it works. But can anyone tell me how to get it to do this:
If someone goes to http://www.MySubdomain.MyDomain, they are given http://MySubdomain.MyDomain instead.
I am using a windows 2003 server.
If someone goes to http://MyDomain, they are given http://www.MyDomain instead.
The code I am using for this is:
RewriteCond Host: (?!www„.)(.*)
RewriteRule (.*) http„://www.$1$2 [I,RP]
I did not write this code to begin with and am not sure how it works. But can anyone tell me how to get it to do this:
If someone goes to http://www.MySubdomain.MyDomain, they are given http://MySubdomain.MyDomain instead.
I am using a windows 2003 server.
