- Forums
- PHP
- How Do I Forward My Website To Another Page URL With PHP Code
you can use this php code to forward or redirect one page to another without the user having to click anything, the header browser will detect it and change the url location [944], Last Updated: Sat May 18, 2024
toyotalover
Thu Jul 20, 2006
1 Comments
1102 Visits
use the following code to send all traffic from one site to another
CODE:
<?php
header("Location: http://www.webune.com");
exit;
?>