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
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 [DATE]1259079008[/DATE] at [TIME]1259079008[/TIME] ---------------
Nevermind, figured it out. Needed the code only.
Code:
<?php
header("Location: http://www.example.com/"); /* Redirect browser */
?>
PLEASE DELETE OR CLOSE