Tuesday 17 June 2014

301 permanently moved redirect with PHP

The following php commands will do a 301 redirect when using PHP FPM 
 
 
header('Status: 301 Moved Permanently', true);
header('Location: ' . $url); // or header('Location: ' . $url, true, 301);
 
http://stackoverflow.com/questions/5268454/php-301-redirect-impossible 

No comments:

Post a Comment