• I just enabled friendly urls with FAlbum and everything is working fine except for the old links in my posts that are going to the “old” urls like (http://www.gface.dk/wp-content/plugins/falbum/falbum-wp.php?album=1697504)

    i get the error:
    Error: fail: 1 – Photoset not found
    Section: fa_showAlbumThumbnails -> $xpath

    Can I modify my .htaccess file so that it would work?

    basicly I want to get this “old” link to work:
    http://www.gface.dk/wp-content/plugins/falbum/falbum-wp.php?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>

    ————————————

The topic ‘FAlbum’ is closed to new replies.