hello fro tell me how redirect one site to any other site.......
mean what me fill in index.PHP open my sec site......
mean what me fill in index.PHP open my sec site......
......
......
<meta http-equiv="refresh" content="5; URL=http://your.redirection.url.here">
<!-- NOTE: 5 means five seconds -->
.....
.....
<?php
//you php code here...
?>
<?php
//some code
header( "refresh:5;url=your.rediraction.url.here" );
//NOTE: 5 means five seconds
?>
<?php
header("Location: http://site.tld");
exit;
?>
Comment