Hey guys, I have been trying to find an answer but I Couldn't. Is there anybody that can tell me how do I make 301 redirect on windows server , especially on Godaddy? Please , this is very important to me! Thanks
You can set 301 redirection using ASP or PHP script. You can also use ISAPIRwrite rule to set 301 redirection. Kailash
"You can also use ISAPIRwrite rule to set 301 redirection" what is this? is it for non-www to www? (that's what I need) can you provide some more info? thanks
To redirect your domain to www using ISAPI Rewrite rule: RewriteCond Host: ^example\.com RewriteRule (.*) http\://www\.example\.com$1 [I,RP] You will need to write this code in httpd.ini file. You can provide this to your host, they should set it for you. Kailash
Kailash . thank you very much for you help! is this the only code should be in the file ? is there any way I can do it myself without any help from Godaddy? just create the file and upload it to the server? is this for a WINDOWS SERVER as well? Thanks again for your help!
I failed doing that . can you please provide me with the exact code should be in the httpd.ini ( the file I should upload to the server) Thanks!
The code that I have provided in my previous post should work with on the server using ISAPI filter (Provided by Helicon). If your host have installed lite version then you can not do it from your end. You will need to provide the rules to them and they should set it for you. You just need to replace example and com in previous rule with your actual domain and TLD. Kailash