I need to be able to browse to http://www.example.com/index.php, but WordPress automatically 301 redirects this to http://www.example.com/.
Is it possible to stop this redirection ONLY for the homepage?
Here is my .htaccess file:
# 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