Hi, is there a way to have zenphoto generate URLs that are normal instead of PHP queries? So instead of having, say, "index.php?image=blabla" it would be "/image/blabla"?
I seem to remember some way of doing that, or am I just imagining things?
The problem is of course that search engines only see my site as consisting of one page, which isn't too good.
Cheers
Comments
global $_zp_current_image;
$crntimg = $_zp_current_image->getFullImage();
$HTTP_HOST = getenv('HTTP_HOST');
$current_image = "http://$HTTP_HOST$crntimg";
I'm using, for example:
`RewriteRule ^(.*)/image/thumb/(.*) /zen/i.php?a=$1&i=$2&s=thumb`
Sorry if that looks silly, haha What's wrong with it?
`RewriteRule ^(.*)/(.*).php /index.php?album=$1&image=$2
RewriteRule ^(.*)/ /index.php?album=$1`
Is that how they are supposed to be?