I have just moved my wordpress site from local dev using XAMPP to what will be our live server running Apache. Prior to move permalinks were working fine. But now I can only get them to work as below:
Was using: /%category%/%postname%/ -worked locally
Results: page not found
Now using: /index.php/%category%/%postname%/
Results: Works (mod_rewrite is working) with resulting URL.com/index.php/cat/post/
Do I have to modify the .htaccess file? The file is currently:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Don't know why its doing this... thanks for any help!!!