我正在尝试将所有 .PDF 和 .pdf 文件从网站根目录自动重定向到名为 docs 的子目录。
请注意,网站根目录上没有任何实际的 PDF,这就是我尝试使用 !-f 位的原因。
到目前为止,这是我想出的,但它不起作用。我将不胜感激任何帮助。
# redirect PDF files requested on the root '/' to /docs/<filename>.(pdf|PDF)
Options +SymLinksIfOwnerMatch
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^/(.(pdf|PDF))$ /docs/$1