RegEx使用filesmatch在htaccess中查找文件名中包含特定单词的图像

时间:2013-06-19 17:25:02

标签: .htaccess

我正在努力寻找合适的RegEx。我想用FilesMatch用文件名中的特定单词保护所有jpg图像。这个词应该是"预览",我需要这个,我需要同样的东西来找到没有"预览"在文件名中。

    <FilesMatch "!=preview\jpg">
    Order Deny,Allow
    Deny from all
    Allow from development.url.com
    Allow from 85.13.139.234
    </FilesMatch>

    <FilesMatch "==preview\jpg">
    Order Deny,Allow
    Deny from all
    Allow from development.url.com
    Allow from 85.13.139.234
    </FilesMatch>

像这样,一个是!=&#34;预览&#34;一个是==&#34;预览&#34; ;)第三个选择所有jpg图像也很棒:)

谢谢:)

1 个答案:

答案 0 :(得分:0)

您可以使用Files指令执行正则表达式匹配:

<Files ~ "preview">...</Files>