Wordpress错误“;您没有足够的权限访问此页面“;来自http https


Wordpress error "You do not have sufficient permissions to access this page" from http-https

我使用wordpress 4.1,我从http改为https,然后当我尝试登录时,我收到一个错误,

您没有足够的权限访问此页面。

谁能帮我解决这个问题吗。

我也有这个问题,

备份.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');

这应该会让您返回到仪表板,然后您可以重新开始处理它。