我尝试使用下面的 Apache 代码来防止在.git
文件夹中提供任何内容。但我仍然可以访问example.com/.git/config
文件。
<Directorymatch "^/.*/\.git/">
Order deny,allow
Deny from all
</Directorymatch>
我尝试使用下面的 Apache 代码来防止在.git
文件夹中提供任何内容。但我仍然可以访问example.com/.git/config
文件。
<Directorymatch "^/.*/\.git/">
Order deny,allow
Deny from all
</Directorymatch>
Deny from all
是旧版 Apache 2.2 的语法。Apache 2.4 的相应符号是:有关更多语法更改,请参阅从 2.2 升级到 2.4 。