Many times we need to re-direct a page to another page, due to lots of reasons like:
Here are simple PHP headers to re-direct the page to new location.
Thanks.
- You changed your URL patterns to new patterns.
- The Old links are dead.
- You simply moved your site to new domain,
Here are simple PHP headers to re-direct the page to new location.
<?php Header( "HTTP/1.1 301 Moved Permanently" ); Header( "Location: http://www.newurl-to-forward.com" ); ?>And alternatively if you want to manage re-direct in .htaccess file then you can do the following steps
Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^old_domain.com [nc]
rewriterule ^(.*)$ http://www.new_domain.com/$1 [r=301,nc]
Thanks.
No comments:
Post a Comment