Hello sir, I am using this code to solve canonical issue but when i type http://vegascasino21.com/ it redirects to http://www.vegascasino21.com/index.aspx . but i don't want index.aspx with it.
Please suggest me something so that i get desired result.
void Application_BeginRequest(object sendr, EventArgs e)
{
if (HttpContext.Current.Request.Url.ToString().ToLower().Contains("http://vegascasino21.com/"))
{
HttpContext.Current.Response.Status = "301 Moved Permanently";
HttpContext.Current.Response.StatusCode = 301;
HttpContext.Current.Response.AddHeader("Location", Request.Url.ToString().ToLower().Replace("http://vegascasino21.com/", "http://www.vegascasino21.com/"));
}
}