Site Fuse! programming, design, hosting, promotion and advertising tips for webmasters

PHP 301 redirect

Home  \  Forums  \  Programming & Development Forums  \  PHP Forums  \  PHP 301 redirect
Share   

user photo

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");
?>
user photo
Guest