Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
1 to 1 of 1
#BEGIN Textpattern
<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteBase /relative/web/path/
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.+) - [PT,L]
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^(.*) index.php
RewriteCond %{HTTP:Authorization} !^$
RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization}]
</IfModule>
#END Textpattern
# BEGIN Plogger
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /plogger
RewriteCond %{REQUEST_URI} !(\.|/$)
RewriteRule ^.*$ http://mydomain.com%{REQUEST_URI}/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -d [OR]
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^.*$ - [S=2]
RewriteRule feed/$ plog-rss.php?path=%{REQUEST_URI} [L]
RewriteRule ^.*$ index.php?path=%{REQUEST_URI} [L]
</IfModule>
# END Plogger
/ploggerpath/?level=album&id=1
into this /ploggerpath/collection1/gallery1/
/?s=section
into this /section
/?s=gallery&level=album&id=1
/gallery/collection1/gallery1
1 to 1 of 1