Netfirms Friendly Url Fix
So I was searching around for Netfirms plus some other terms and happened across this nice thread. The third to last post shows a nice, simple fix for it, just edit your .htaccess file with this code:
# BEGIN WordPress
<IfModule mod_rewrite.c%gt;
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !index.php
RewriteRule (.*) /index.php/$1 [L]
</IfModule>
# END WordPress
It just works perfectly.