RewriteCond 在现有文件上失败

RewriteCond 在现有文件上失败

因此,我的 .htaccess 文件以以下内容开头:

Options -MultiViews
RewriteEngine on
RewriteBase /

我尝试过:

RewriteCond %{REQUEST_FILENAME} -f
or
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -f
or
RewriteCond %{REQUEST_URI} -f

但是 RewriteRule 从未执行。

.htaccess 文件放置在网站的 / 中。

相关内容