Abhishek Kumar
Abhishek Kumar

Reputation: 1

How to redirect default.aspx to root directory?

I would like to redirect home page (sapphireenterprises.net/default.aspx) to sapphireenterprises.net/ to tackle duplicate content issue from SEO point of view. I tried many rewrite rule in web config but none of them work properly many of them create redirect loop please help me. Please guide me to add c# programming on code behind page..

Upvotes: 0

Views: 212

Answers (1)

Kevin Coulson
Kevin Coulson

Reputation: 548

Just put

Response.Redirect("/");

In the page load event.

Upvotes: 1

Related Questions