以下是网站301跳转的代码大全,涵盖了不同服务器和编程语言的实现方法:
1. IIS下301设置
在IIS管理器中,你可以为虚拟目录设置重定向到URL,并选择“资源的永久重定向”。
2. ASP下的301转向代码
<%@ Language=VBScript %>
<%
Response.Status = "301 Moved Permanently"
Response.AddHeader "Location", "http://www.ahwebs.com/articles/301/"
%>
3. ASP.Net下的301转向代码
<script runat="server">
private void Page_Load(object sender, System.EventArgs e)
{
Response.Status = "301 Moved Permanently";
Response.AddHeader("Location", "http://www.ahwebs.com/articles/301/");
}
</script>
4. PHP下的301转向代码
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.ahwebs.com/articles/301/");
exit();
5. CGI Perl下的301转向代码
$q = new CGI;
print $q->redirect("http://www.new-url.com/");
6. JSP下的301转向代码
<%
response.setStatus(301);
response.setHeader( "Location", "http://www.ahwebs.com/" );
response.setHeader( "Connection", "close" );
%>
7. Apache下301转向代码
在.htaccess文件中添加以下内容(需要开启mod_rewrite):
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^lesishu.cn [NC]
RewriteRule ^(.*)$ http://www.ahwebs.com/$1 [L,R=301]
8. Apache下vhosts.conf中配置301转向
<VirtualHost *:80>
ServerName www.ahwebs.com
DocumentRoot /home/lesishu
</VirtualHost>
<VirtualHost *:80>
ServerName lesishu.cn
RedirectMatch permanent ^/(.*) http://www.ahwebs.com/$1
</VirtualHost>
9. 使用HTML meta标签实现301跳转
<meta http-equiv="refresh" content="0;url=http://www.new-url.com/">
这将在页面加载后立即将用户重定向到新的URL,但请注意,这种方法并不被所有搜索引擎优化(SEO)专家推荐,因为它可能不被所有搜索引擎正确识别为301重定向。
这些代码提供了不同环境下实现301跳转的方法,可以根据你的具体需求选择合适的代码实现。
评论已关闭