我有一个名为 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