Freelance Jobs
Marketplace
Forums
Login
Join
PHP 301 redirect
Home
\
Forums
\
Programming & Development Forums
\
PHP Forums
\ PHP 301 redirect
Share
Tweet
MrPhear
1 years, 6 months ago
Easily 301 redirect php pages using the code below;
<?
Header("HTTP/1.1 301 Moved Permanently");
Header("Location: http://www.url-to-redirect.com");
?>
Guest