Now I need a little help, too. I am currently making a website with zenphoto (what else?) for a customer and I use it a bit differently than normal (I'll post the URL when ready), so that the included htaccess file doesn't fit completly. I just don't get these ReWrite Rules...
These `/index.php?p=uebersicht&rubrik=gr&page=1` I want to look like this
`/uebersicht/gr/1`
Would be nice if someone could tell me what rule to add.
Thanks.
Comments
Would `ubersicht` be constant? If so,
` RewriteRule ^/ubersicht/(.*)/([0-9]+)/?$ index.php?ubersicht&p=$1&page=$2 [L,QSA]`
will work. [caveat, I have not tried this.]
The site already for testing online: www.renateemme.de (look under the link "Bilder für große Leute" (means "images for grown people"), there are a few unrelated test images)
It works without mod_rewrite perfectly, but would be nicer with of course...
`RewriteRule ^/(.*)/(.*)/([0-9])+)/?$ index.php?p=$1&rubrik=$2&page=$3`