WordPressの管理画面でYou don’t have permission to access /wp/wp-login.php on this server.

CloudFlareを入れたら海外からのアクセスになってしまいハッスルサーバーが海外IPを拒否しているので、
ワードプレスの管理画面でログインしようとすると

Forbidden

You don’t have permission to access /wp/wp-login.php on this server.
Apache/1.3.42 Server at marchenterprise.net Port 80

とエラーになる。

/wp/.htaccess

AddHandler x-httpd-php5 .php
order allow,deny
allow from all
<IfModule mod_security.c>
SecFilterInheritance Off
</IfModule>
# BEGIN WordPress

# END WordPress

としてもダメで、

AddHandler x-httpd-php5 .php
<Files *>
<Limit POST>
order allow,deny
allow from all
</Limit>
</Files>
<IfModule mod_security.c>
SecFilterInheritance Off
</IfModule>
# BEGIN WordPress

# END WordPress

としたら行けた。。

数か月入れなかったわ∑(゚Д゚;;)

WordPressの管理画面でYou don’t have permission to access /wp/wp-login.php on this server.
トップへ戻る