如何让wordpress停止永久化非wp目录?

时间:2009-08-05 12:27:06

标签: wordpress .htaccess

如何让我的WordPress安装停止接管与其无关的目录?

我有一个通过.htaccess保护密码的目录,当它没有受到保护时,我可以访问它,但现在它就是,它会抛出一个WordPress 404页面。

这是现有的WordPress .htaccess文件

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

我想要保护的目录是

/software/development/

1 个答案:

答案 0 :(得分:5)

WordPress应该只在请求的目录或文件不存在时启动,所以我假设您依靠FancyIndexing来获取/software/development的目录列表?如果是这样,那么您应该能够在该目录中粘贴.htaccess文件以关闭请求重写:

<IfModule mod_rewrite.c>
 RewriteEngine Off
</IfModule>