Aug 27, 2005
Apache Rewrite for Blosxom Url Hiding
I just realised my Blosxom 'categorytree' plugin wasn't working. The Blosxom web page was loading fine but none of the sub links/categories were working.
A quick search of the faq turned up this tidbit on url-hiding.
And I just had to add to my .htaccess file
RewriteEngine on
RewriteRule ^osxom/?(.*)$ osxom/blosxom.cgi/$1
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ blosxom.cgi/$1 [L,QSA]
Whats wierd is that I thought I had this fixed already.
Permalink | 2005.08.27-21:05.00