Использование файла robots.txt
:
Вы можете создать файл robots.txt
в корне приложения и поместить в него следующее:
User-agent: Google
Disallow: 1.aspx
Подробнее о файлах robots.txt http://www.robotstxt.org/robotstxt.html
Выполнение перенаправления:
Response.Status = "301 Moved Permanently";
Response.AddHeader("Location", "/2.aspx");
Выполнение перенаправления без этой страницы, существующей в Global.asax
:
void Application_BeginRequest(object sender, EventArgs e) {
string url = Request.Url.ToString().ToLower();
if (url.Contains("/1.aspx")) {
Response.Status = "301 Moved Permanently";
Response.AddHeader("Location", "/2.aspx");
}
}