How to Redirect a Web Page "301 Redirect"
posted on 17 Dec 2009 22:35 by aumja24 in OtherColdFusion Redirect
<.cfheader statuscode="301" statustext="Moved permanently"><.cfheader name="Location" value="http://www.new-url.com">
PHP Redirect
<?Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.new-url.com" );
?>
ASP Redirect
<%@ Language=VBScript %><%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","http://www.new-url.com/"
%>
ASP .NET Redirect
<script runat="server">private void Page_Load(object sender, System.EventArgs e)
{
Response.Status = "301 Moved Permanently";
Response.AddHeader("Location","http://www.new-url.com");
}
</script>
JSP (Java) Redirect
<%response.setStatus(301);
response.setHeader( "Location", "http://www.new-url.com/" );
response.setHeader( "Connection", "close" );
%>
CGI PERL Redirect
$q = new CGI;print $q->redirect("http://www.new-url.com/");
Ruby on Rails Redirect
def old_actionheaders["Status"] = "301 Moved Permanently"
redirect_to "http://www.new-url.com/"
end
Tags: 301, 301redirect, redirect, web1 Comments
เค้าว่าพวกเรียนคอม จะพูดไม่ค่อยรู้เรื่อง เริ่มเชื่อล่ะ
#1 By Nuch (58.8.147.204) on 2009-12-25 23:28