403禁止您无权访问此服务器上的/

时间:2015-01-29 17:22:24

标签: wordpress .htaccess wordpress-plugin

所以我在Wordpress上写了一篇新文章,突然间我得到了403错误     禁

You don't have permission to access / on this server.
Apache/2.4.9 (Unix) Server at www.lightwear.co.uk Port 80

我搜索了网页,尝试了一些建议,将文件夹插件重命名为plugins.HOLD

同时检查.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

仍然没有成功。 检查网站:http://www.lightwear.co.uk/ 非常令人沮丧...... 任何想法我该怎么办?

1 个答案:

答案 0 :(得分:0)

将其添加到.htaccess文件的顶部,看看它是如何工作的。

DirectoryIndex index.php

否则请检查您的文档根目录的权限。

将public_html权限更新为755