我在httpd.conf中看到這個(我的mac)這個正則表達式的意思
#
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
<FilesMatch "^\.([Hh][Tt]|[Dd][Ss]_[Ss])">
Order allow,deny
Deny from all
Satisfy All
</FilesMatch>
該表達式的前半部分(前或(「|」)符號)看起來「啓動H或H,接着爲T或t。
但是後半部分是什麼意思?
只是'開始D或d後跟S或s並且下劃線和S或s?那麼,那是什麼?
預先感謝您。
'\ .'表示文字'.',所以匹配必須以_period_開頭。 – 2011-06-08 14:30:54