403禁止在Wordpress中使用

时间:2015-03-22 13:01:13

标签: wordpress .htaccess

我有使用Wordpress构建的网站,它从昨天起就开始了。我注意到我看不到特定页面,它是标记帖子的生成类别。只有特定的类别有问题,其他每个类别都很有效。 我收到以下错误。

Forbidden
You don't have permission to access /page_X/ on this server.

我已经尝试删除htaccess文件,因此Wordpress可以重新创建新文件,但它不起作用。 例如,www.mydomain.com/pageX应该是可见的

目前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

我试过这样的事情

<Limit GET POST>
 order allow,deny
 allow from all
</Limit>

0 个答案:

没有答案
相关问题