I am trying to install plogger using the install script, which I uploaded to a subdirectory on my website. When I try to access that script (by going to http://www.lifeofreilley.com/plogger/_install.php), I get a 404 page not found error. I'm assuming this is because of the .htaccess rules set up for permalinks. How do I get around this?
My current .htaccess reads as follow:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>