前端之家收集整理的这篇文章主要介绍了
正则表达式 – HTTP Basic Auth排除单个文件,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的.htaccess
文件的一部分看起来像这样 –
AuthUserFile /path/to/.htpasswd
AuthName "Authorization required"
AuthType Basic
require valid-user
这样做需要对整个目录及其下面的目录进行基本HTTP身份验证.但是,我在该根目录thubservice.PHP中有一个文件,它不应该要求HTTP身份验证.
从我所看到的,我需要使用< FilesMatch />,但我无法找出匹配除给定文件之外的所有模式.
AuthUserFile /path/to/.htpasswd
AuthName "Authorization required"
AuthType Basic
require valid-user
<Files "thubservice.PHP">
Satisfy Any
Allow from all
</Files>
原文链接:https://www.f2er.com/regex/357334.html