301 Moved Permanently
August 20th, 2007
No comments
Permanent Redirect with HTTP 301
redirect url in php
<?php
header( "HTTP/1.1 301 Moved Permanently" );
header( "location: http://www.new-url.com" );
?>
redirect url in asp
<%@ Language=VBScript %>
<%
Response.Status="301 Moved Permanently" Response.AddHeader "Location", " http://www.new-url.com"
>
redirect url in ColdFusion
<.cfheader statuscode="301" statustext="Moved permanently">
<.cfheader name="Location" value="http://www.new-url.com">
redirect url ...








