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