从 .htaccess 中的密码保护中排除一个文件
我在 .htaccess
中有以下代码来使用密码保护文件:
<FilesMatch "\.(html|htm|css|js|php|swf|swz|xml|ico|jpg|jpeg|png|txt)$">
AuthName "Member Only"
AuthType Basic
AuthUserFile /path/to/password/.htpasswd
require valid-user
</FilesMatch>
如何从此处排除 should_be_excluded.php
受密码保护? 如果需要,我可以更改保护线,但我认为可以在正则表达式中做一些事情?
I have the following code to protect files with password in .htaccess
:
<FilesMatch "\.(html|htm|css|js|php|swf|swz|xml|ico|jpg|jpeg|png|txt)$">
AuthName "Member Only"
AuthType Basic
AuthUserFile /path/to/password/.htpasswd
require valid-user
</FilesMatch>
How can I exclude from here the should_be_excluded.php
from being password protected?
I can change the protection lines if needed, but I think that something could be done in the regex?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
怎么样:
这应该允许ALL访问排除的文件?
how about something like:
this should allow ALL access to the excluded file?