SVTCobraLTD
11-24-2009, 02:04 PM
My automotive site has no use for pictures/albums section. How can I make it that all album and picture sections redirect to a different program on my site? Instead of album.php it would redirect to garage.php. I tried editing the album.php page to have only the code
<html>
<?php
header( 'Location: http://www.yoursite.com/new_page.html' ) ;
?> in it but it did not work and gave me an error.
--------------- Added 1259079008 at 1259079008 ---------------
Nevermind, figured it out. Needed the code only.
<?php
header("Location: http://www.example.com/"); /* Redirect browser */
?>
PLEASE DELETE OR CLOSE
<html>
<?php
header( 'Location: http://www.yoursite.com/new_page.html' ) ;
?> in it but it did not work and gave me an error.
--------------- Added 1259079008 at 1259079008 ---------------
Nevermind, figured it out. Needed the code only.
<?php
header("Location: http://www.example.com/"); /* Redirect browser */
?>
PLEASE DELETE OR CLOSE