.htaccess redirect homepage to album

Hi all,

What I would like to do is add a rule in my .htaccess file that redirects my homepage to one of my albums.

I have tried sticking "Redirect 301 / /02" in the top of my file but that just generates an Internal Server Error.

I was hoping someone could point me in the right direction as to how to do this.

Thanks.

Comments

  • acrylian Administrator, Developer
    I can't help with the htaccess redirect and its effect to the normal Zenphoto behaviour.

    The easiest besides htaccess would be a simple php header redirect. Clear the themes index.php file and place something like
    `
    <?php
    header("HTTP/1.1 301 Moved Permanently");
    header("Location: http://www.yourdomain.com/zenphoto/<desired album>");
    header("Connection: close");
    ?>?>
    `
    in the first line. More info about details on this on the web..:-)
  • Good enough for me. I was worried about messing with that .htaccess file...

    Thank so much for the help.
Sign In or Register to comment.