PHP redirect Method to another page
PHP redirect Method to another page Santhosh veer Last Updated: October 9, 2016 HTML , Php PHP REDIRECT METHOD TO ANOTHER PAGE In this Tutorial we are Going to learn About PHP redirect to another page or Link this method will help to redirect a visitor’s to our New website From Old website this method is also used in lot of redirection purpose ok let’s come to our tutorial. You can use this codes at your header() function in PHP 1 <?php 2 header( 'Location: mypage.php' ); 3 ?> 1 <?php 2 header( 'Location: /directory/mypage.php' ); 3 ?> 1 <?php 2 header( 'Location: http://www.website.com/forum/' ); 3 ?> HTML PAGE REDIRECT METHOD 1 // For example, redirecting to www.newwbesite.com < meta http-equiv = 'refresh' content = '0;url=http://www.newwebsite.com' > Hope this tutorial will help you to Re...