正则表达是我的克星:( 请帮助解决以下问题:
If the domain contains <string>
For all links with a .pdf extension
redirect to /Docs/<pdfPath>
例如:
example.pdf - &gt; /Docs/example.pdf
和
/app/example.pdf - &gt; /Docs/app/example.pdf
我目前有以下内容(经过大量拖网搜索),这只适用于文件名(不是子文件夹路径)。
RewriteCond %{HTTP_HOST}:%{REQUEST_URI} domainString
RewriteRule ^([^./]+\.pdf)$ /Docs/$1 [L,NC]