scribble

守望的麦子

About Projects Tool Guestbook

27 Nov 2007
各种程序的301重定向代码

  当你的网站链接或者某个网页的链接发生了改变,如何让原来在搜索引擎中收录的链接(URL)能够继续地有效,将用户导向当前的URL地址?

  最有效和安全的方法是利用301 redirect,301转向能够保持你的网页的PageRank不变,从而使你过去的工作得到保证。

  “301”代码解释为永久性的转移。下面是几种方法进行301转向:

IIS Redirect

  在IIS服务器管理器中,选择要做转向的文件或目录,按右键选择“a redirection to a URL”的按钮,输入你要指向的页面地址,选择”The exact url entered above”和”A permanent redirection for this resource”,然后选择“应用”。

ASP:
[code]Response.Status=”301 Moved Permanently”
Response.AddHeader “Location”, “http://www.Jasontian.cn/”
Response.End[/code]
PHP:
[code]header(“HTTP/1.1 301 Moved Permanently”);
header(“Location:http://www.Jasontian.cn/);
exit();
?> [/code]
ASP.NET:
[code][/code]用 .htaccess 文件转向
创建一个.htaccess文件,在.htaccess文件中加入:

Redirect permanent /

Redirect 301 /

FROM: http://blog.wyk.net.ru/show-1375-1.html

Til next time,
Jason at 00:00

scribble

About Projects Tool Guestbook