Previously i’m using Isapi_Writer 3.0 from HeliconTech to use permalink for WordPress but sadly it not goes smoothly, i got problem with the permalink, it turn off randomly and get another 404 page, so i try another method, now i try using IIRF (can be download it here) and use this in IIRF.ini :
1 2 3 4 5 6 7 8 9 | RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^/sitemap.xml$ - [L] RewriteRule ^wp-(.*)$ /wp-$1 [L] RewriteRule ^xmlrpc(.*)$ /xmlrpc$1 [L] RewriteRule ^(index.php)*(.*)$ index.php/$2 [NC,L] |
Now it’s really fixed, i hope 😀
Update : Again i got another 404 Page
so i change the RewriteRule to
1 | RewriteRule ^(index.php)*(.*)$ index.php/$1 [NC,L] |