403禁止访问非Wordpress子文件夹

时间:2016-05-03 08:18:41

标签: wordpress .htaccess

我在带有wp超级缓存插件的Centos服务器上有一个wordpress网站,并使用chmod 777在根目录中创建了一个子文件夹。 但是当我尝试访问此目录中的文件时,我有一个错误403禁止返回。

htaccess文件如下所示:

# BEGIN WPSuperCache
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
...
RewriteCond %{REQUEST_URI} !^.*[^/]$
RewriteCond %{REQUEST_URI} !^.*//.*$
RewriteCond %{REQUEST_METHOD} !POST
RewriteCond %{QUERY_STRING} !.*=.*
RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress_logged_in|wp-postpass_).*$
RewriteCond %{HTTP:X-Wap-Profile} !^[a-z0-9\"]+ [NC]
RewriteCond %{HTTP:Profile} !^[a-z0-9\"]+ [NC]
RewriteCond %{HTTPS} !on
RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{SERVER_NAME}/$1/index.html -f
RewriteRule ^(.*) "/wp-content/cache/supercache/%{SERVER_NAME}/$1/index.html" [L]
</IfModule>

# END WPSuperCache

<IfModule mod_rewrite.c>
RewriteRule ^index\.php$ - [L]

# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]
</IfModule>

我试着添加这个:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/myfolder/(.*)$ [OR]
RewriteRule ^.*$ - [L]
</IfModule>

但它不起作用。 谢谢你的帮助。

1 个答案:

答案 0 :(得分:0)

请检查错误日志 - 它应该有足够的信息来解决问题,不管怎样我认为应该有所帮助:

<Directory /path/to/wordpress/root>
Require all granted #for apache 2.4 or Allow from all for 2.2
AllowOverride All
Options +FollowSymLinks
</Directory>