我正在使用wordpress 4.1并且我从http更改为https,然后当我尝试登录时出现错误
您没有足够的权限来访问此页面。
任何人都可以帮助我解决这个问题。
答案 0 :(得分:0)
我也有这个问题,
备份您的.htaccess文件,并使用此
# 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
然后,在wp-config中删除https回到http
define('WP_HOME','http://www.example.com');
define('WP_SITEURL','http://www.example.com');
这应该让你回到仪表板,你可以再次开始工作。