what php code can redirect you to another page
i want each time that the visitors enter my website to go to this page
www.example.com/haf/test.php
instead of www.example.com/index.php
thats all
( i want to be able to change it later (easily) )
thanks in advancedHow to create page in php that redirect you to another page ?You need this php on your index page:
%26lt;?php
$newURL = %26quot;www.example.com/haf/test.php%26quot;;
header(%26quot;Location: %26quot;. $newURL );
?%26gt;How to create page in php that redirect you to another page ?you do not need php for that, you can use the HTML tag %26lt;meta refresh
at the very top of your document
Redirect to http://example.com/ immediately:
%26lt;meta http-equiv=%26quot;refresh%26quot; content=%26quot;0;url=http://example.com/%26quot; /%26gt;How to create page in php that redirect you to another page ?put this in the very beginning of your index.php :
%26lt;?php
header( 'Location: http://www.example.com/haf/test.php' ) ;
?%26gt;