PDA

View Full Version : Albums redirect


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

Lynne
11-24-2009, 02:14 PM
Why not just disable albums?

SVTCobraLTD
11-24-2009, 02:21 PM
Because since the links are all there, I will utilize them to take everyone to the garage system instead.