aid

Wednesday, 25 March 2015

URL Redirection in php resolved

301 Redirection using php

if you want to 301 redirect without using any server config file simply put this code in your common configuration file.
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.example.vom./phptest.php");
?>

No comments:

Post a Comment