anuingenious
New member
- Joined
- May 3, 2013
- Messages
- 6
- Points
- 0
I have a commercial website in Asp.net and i have to redirect my website from WWW to known WWW for Seo purpose.Is there any way to do this.
Hello, I found a topic on Webmaster Sun relate to problem you want to askI have a commercial website in Asp.net and i have to redirect my website from WWW to known WWW for Seo purpose.Is there any way to do this.
if (Request.Url.ToString.IndexOf("www") < 0)
{
Response.redirect("http://www." + Request.Url.ToString.Remove("http://"));
}