I recently changed my blog from being hosted on a windows to a linux server. Under the previous configuration, the perma-links in my blog were formatted such as the following -http://www.jasonstrate.com/index.php/2010/06/index-those-foreign-keys/. It included the reference to "index.php".
After the change, the perma-links for this broke and became http://www.jasonstrate.com/2010/06/index-those-foreign-keys/.
Is there any way that I can configure the old links that utilize index.php to redirect to the new perma-links?
The contents of my htaccess file are:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress