这两天有朋友问我,在SEO时我的主机不支持301跳转怎么办,那么好办,通过代码就可以实现,代码如下。
ASP、ASP.net 301 跳转代码
Response.Status="301 Moved Permanently"
Response.AddHeader "Location", "URL"
Response.AddHeader "Location", "URL"
PHP 301 跳转代码
header("HTTP/1.1 301 Moved Permanently");
header("Location: URL");
exit(); //注意:虽然客户端转向了,但程序还会向下执行,所以要exit
header("Location: URL");
exit(); //注意:虽然客户端转向了,但程序还会向下执行,所以要exit
JSP 301 跳转代码
response.setStatus(301);
response.setHeader("Location","URL");
response.setHeader("Location","URL");
如上URL为你要跳转到的地址,请相应替换