playaz Posted July 15, 2009 Share Posted July 15, 2009 Hi guys, I am new to using 301 Redirect, I have built a new PHP site to replace the my existing html one - in my html pages from the previous site I have placed the following code to tell Google and other search engine's that this page has been moved permanently and to redirect the page to the current home page. However it doesn't seem to work, it would appear that the PHP is working on these pages - however it definately works on the server as my site is running in PHP and works perfectly fine. <?php Header( "HTTP/1.1 301 Moved Permanently" ); Header( "Location: http://www.mysiteurl.co.uk" ); ?> Does anyone have any ideas why this isn't working? Thanks in advance :-) Link to comment https://forums.phpfreaks.com/topic/166039-301-redirect-doesnt-seem-to-work/ Share on other sites More sharing options...
phporcaffeine Posted July 15, 2009 Share Posted July 15, 2009 You need to look at how your invoking the redirect. That code, as it is written, should work. Are you sure that you are you sure that you are not sending any other headers prior to sending the redirect? Link to comment https://forums.phpfreaks.com/topic/166039-301-redirect-doesnt-seem-to-work/#findComment-875682 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.