| prins.henrik@gmail.com 2006-01-13, 9:54 pm |
| basicly I want to get this "old" link to work:
http://www.gface.dk/wp-content/plug...p?album=1692474
The url to the same album after my friendly url tweak:
http://www.gface.dk/photos/album/juleaften-2005/
my .htaccess looks like this:
------------------------------------
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule
^photos/?([^/]*)?/?([^/]*)?/?([^/]*)?/?([^/]*)?/?([^/]*)?/?([^/]*)?/?([^/]*)?/?([^/]*)?/?$
/wp-content/plugins/falbum/falbum-wp.php?$1=$2&$3=$4&$5=$6&$7=$8
[QSA,L]
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php
</IfModule>
------------------------------------
please help!!! argh!
|