如何使htaccess规则不影响目录?

时间:2012-12-02 16:30:17

标签: .htaccess

我有一个名为min的文件夹,我有一个htacces,它处理不存在的路径,如/ min / variable,以返回一些数据。

现在在主文件夹中我放了一个htaccess,内容如下:

RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/?emit/(.*)$ emit.php?nice=t&f=$1

不幸的是,现在我打电话给domain.com/min/variable后,我得到空网站。

如何修复它以便新规则不会阻止旧规则?类似的东西:

if something from /min/ is called don't use the new rule

1 个答案:

答案 0 :(得分:0)

不可能以你想要的方式做到这一点。

只需在您的目录中创建.htaccess文件,然后将“RewriteEngine off”语句放入其中。

但它会关闭你的所有陈述