每当我尝试激活我在我的实时网站克隆的localhost(XAMPP)中的wordpress网站中的任何插件时,我都会收到此错误。当我试图改变设置/阅读选项时,我得到同样的错误。
禁止访问!
您无权访问请求的对象。它受读保护或服务器无法读取。错误403
任何帮助PLZ ....
答案 0 :(得分:0)
你需要修复你的htaccess。将此添加到httpd.conf
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L]
RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L]
RewriteRule . index.php [L]
快乐的编码!