Make .git directory web inaccessible

后端 未结 9 1731
耶瑟儿~
耶瑟儿~ 2020-11-30 17:22

I have a website that I use github (closed source) to track changes and update site. The only problem is, it appears the .git directory is accessible via the web. How can I

9条回答
  •  孤城傲影
    2020-11-30 18:14

    I didn't want to muck around in the .git directory and wasn't able to get Bennett's solution to work on Apache 2.2, but adding the following to my configuration worked:

    RewriteRule ^.*\.git.* - [R=404]
    

提交回复
热议问题