Redirecting one page to another page or redirecting whole site using PHP is very simple and fast. You can use this script if you have page that you removed from your site and want your users to be redirected on new page.
You can also use this to redirect users to new site. If you are affiliate marketers, you can use this code to redirect users to product using you affiliate links.
Here is the code:
<?php
header( ‘Location: http://www.technoblip.com/’ ) ;
?>
Or if you want 301 Permanent redirect, you can use below code.
<?php Header( “HTTP/1.1 301 Moved Permanently” );
Header( “Location: http://www.new-url.com” );
?>
Change the URL to your landing page URL. You should remove all content from the page where you are placing this code. If you want to redirect you domain then you should create index.php file in root folder and place this code.