301重定向不但可以在Apache服务器或者IIS中配置,也可以使用代码的形式来做301重定向,而且方法很简单,这里icech整理了一个各种语言编写的301重定向代码给大家,各取所需吧!
PHP 301 重定向代码
301重定向也可以在php文件中通过加入php header来实现,代码如下:
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://farlee.info/newpage.html");
exit();
?>
ASP 301 重定向代码
<%@ Language=VBScript %>
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location", http://farlee.info
%>
ASP.NET 301 重定向代码
<script language="c#" runat="server">
private void Page_Load(object sender, System.EventArgs e)
{
Response.Status = "301 Moved Permanently";
Response.AddHeader("Location",http://farlee.info);
}
</script>
ColdFusion 301 重定向代码
<.cfheader statuscode="301" statustext="Moved permanently">
<.cfheader name="Location" value="http://farlee.info/newpage.html">
CGI Perl下的301转向代码
$q = new CGI;
print $q->redirect("http://farlee.info");
JSP下的301转向代码
<%
response.setStatus(301);
response.setHeader( "Location", "http://farlee.info" );
response.setHeader( "Connection", "close" );
%>