How to redirect 301 in php

By webmaster at 24 March, 2011, 1:40 am

If you want to redirect a page to a new page without be affected by search engines like google for example you have to use 301 redirect.

Bellow is an example of 301 redirect.

<?
Header( “HTTP/1.1 301 Moved Permanently” );  Header( “Location: http://www.newdomain.com” );
?>

Categories : Tech
Tags: ,


No comments yet.

Leave a comment