I (finally) just upgraded my picture gallery to Gallery 3.0.4 (on a side note, in the process I enabled anonymous comments, we’ll see how it goes…). In the process, I lost the pretty URLs for a while. Turns out they are disabled by default, but enabling them is trivial: just uncomment the last part of the provided .htaccess file, ie:
<IfModule mod_rewrite.c> Options +FollowSymLinks RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?kohana_uri=$1 [QSA,PT,L] RewriteRule ^$ index.php?kohana_uri=$1 [QSA,PT,L] RewriteRule ^index.php/(.*) $1 [QSA,R,L] </IfModule>
Note that obviously (and as usual), you need mod_rewrite to use this.
0 Responses
Stay in touch with the conversation, subscribe to the RSS feed for comments on this post.