Getting the following error when trying to log into my Wordpress install:
Forbidden
You don't have permission to access /newsite/wp-login.php on this server.
Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 PHP/5.3.27 mod_perl/2.0.6 Perl/v5.10.1 Server at ctcatholic.org Port 80
I have checked permissions on the wp-config.php and the wp-login.php pages and made sure that they were set to 644. I also made sure the folder for the admin files was set to 755.
My .htaccess file has this inside:
# 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
Any thoughts on how else I can fix?