该网站运行良好,但每当我打开我的管理面板第一次仪表板看起来像Attached Image 在此之后,如果我重新加载页面,我的网站会收到此错误:您无权访问此服务器上的/ wp-admin /。
现在我无法打开任何页面。
现在,如果我清除缓存,则会显示我的网站
我的.htaccess
https://drive.google.com/open?id=0By7-gVeS797ISE1WdnZYTHI0MjQ
答案 0 :(得分:0)
尝试以下.htacees
# 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