fancy urls (with Apache mod_rewrite) fancy urls (with Apache mod_rewrite)
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

fancy urls (with Apache mod_rewrite)

Started by blueyed, October 19, 2003, 08:32:08 PM

Previous topic - Next topic

0 Members and 2 Guests are viewing this topic.

blueyed

I'm building my site using fancy URLs (=static looking URLs), that will be redirected through Apache's mod_rewrite module.
AFAICS Coppermine has no support for that yet, but that would be cool. You would need an option to turn in on through Admin panel and put a set of rules into .htaccess or httpd.conf.
What do you think?

Now I have the following rules:RewriteRule ^en/gallery/(.*)?(.*) /gallery/$1?$2&lang=english
RewriteRule ^en/gallery/(.*) /gallery/$1?lang=english

RewriteRule ^de/gallery/(.*)?(.*) /gallery/$1?$2&lang=german
RewriteRule ^de/gallery/(.*) /gallery/$1?lang=german

That redirects my two supported languages to the coppermine path.

bug report
It works quite good, but leads to problems. I saw it for the "to user mode" link, that will be:http://thequod.de/de/gallery/admin.php?admin_mode=0&referer=/de/gallery/admin.php?lang=german
resulting in
"Script called without the required parameter(s)." - probably due to the questionmark in the referer GET variable, which should be escaped.
Don't know, if there are other issues..