Get your server issues fixed by our experts for a price starting at just 25 USD/Hour. Click here to register and open a ticket with us now!

Author Topic: PHP Redirection Code  (Read 2382 times)

0 Members and 1 Guest are viewing this topic.

Haripriya H

  • Guest
PHP Redirection Code
« on: December 29, 2013, 11:44:54 am »
How to redirect index.php page to another URL   by using php code .

Just add the following code in the Index.php  file.

===============================================
<?php
header( ‘Location: http://www.domain.com/pagetoredirect.html’ ) ;
?>
===============================================

Note : Replace “http://www.domain.com/pagetoredirect.html” with exact URL on which you want to redirect your  index page .

That’s all this will do it  ;D ;D