I am trying to achieve a very simple yet complicated thing: Remove index.php from my blog URL
I have permalink setup as: /%year%/%monthnum%/%postname%/
I have tried atleast 20 examples online in my .htaccess file but none of them work: Either the whole website doesnt work or the entries dont. I get 404s
Few examples I tried:
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?p=$1 [NC,L]
and
RewriteRule (.*) index.php/$1 [L]
and
RewriteRule .* /index.php [L]
and
Options +Followsymlinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
etc etc.. Unfortunately none of them works. Helicon tech support is asking for money to help me so doors are closed there.
Any rewrite rule expert? Will be grateful to you.
Regards,
I am using IIS 6, Win2k3, Wishlist member and the permalink %postname%.
This config file for isapi rewrite by helicon, is the only one that works.
Yaroslav you are my hero.