用于filematch的Apache webserver正则表达式

时间:2016-02-22 04:56:25

标签: regex apache .htaccess

当我将以下内容放入str文件

时,为什么会这样?
.htaccess

是否会导致500内部服务器错误?而如果我使用

<FilesMatch "*\.html$">
    AuthType Basic
    AuthName "Authorised access only"
    AuthUserFile /path/to/.htpasswd
    Require user profile
    AddDefaultCharset utf-8
</FilesMatch>

没关系,并相应地继续进行?

1 个答案:

答案 0 :(得分:1)

.*

之前,您需要\.html来匹配任何内容

<FilesMatch ".*\.html$">