Member
Member
inertiawebdesign   2009-03-01, 18:25
#1
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.
Administrator
Administrator
acrylian   2009-03-01, 18:37
#2
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..:-)
Member
Member
inertiawebdesign   2009-03-01, 20:09
#3
Good enough for me. I was worried about messing with that .htaccess file...

Thank so much for the help.
  
Powered By MyBB, © 2002-2026 MyBB Group.
Made with by Curves UI.