当我将以下内容放入str
文件
.htaccess
是否会导致500内部服务器错误?而如果我使用
<FilesMatch "*\.html$">
AuthType Basic
AuthName "Authorised access only"
AuthUserFile /path/to/.htpasswd
Require user profile
AddDefaultCharset utf-8
</FilesMatch>
没关系,并相应地继续进行?
答案 0 :(得分:1)
.*
\.html
来匹配任何内容
<FilesMatch ".*\.html$">