Many times, people use the git repository to host websites in productions by clone-push-pull but it has one drawback, it appears the .git directory is accessible via the web. How we can prevent this? Here there are 2 ways which are recommended given below;
- One redirects to a 404 aka to issue a 404 (w/ mod_rewrite):
- Redirect it to the domain root
# One redirects to a 404 aka to issue a 404 (w/ mod_rewrite): | |
# Method 1 - .htaccess sample 1 | |
# Make .git files and directory web inaccessible | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteRule ^(.*/)?\.git+ - [R=404,L] | |
</IfModule> | |
# Second line of defense (if no mod_rewrite) | |
RedirectMatch 404 ^(.*/)?\.git+ | |
#Redirect it to the domain root | |
# Method 2 - .htaccess sample 2 | |
# Make .git files and directory web inaccessible | |
# Redirect it to the domain root | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteRule "^(.*/)?\.git/" http://%{HTTP_HOST}/? [L] | |
</IfModule> | |
# Second line of defense (if no mod_rewrite) | |
RedirectMatch 404 ^(.*/)?\.git+ |
Git Tutorials | Github Tutorials | Git using Github Crash Course
I’m a DevOps/SRE/DevSecOps/Cloud Expert passionate about sharing knowledge and experiences. I am working at Cotocus. I blog tech insights at DevOps School, travel stories at Holiday Landmark, stock market tips at Stocks Mantra, health and fitness guidance at My Medic Plus, product reviews at I reviewed , and SEO strategies at Wizbrand.
Please find my social handles as below;
Rajesh Kumar Personal Website
Rajesh Kumar at YOUTUBE
Rajesh Kumar at INSTAGRAM
Rajesh Kumar at X
Rajesh Kumar at FACEBOOK
Rajesh Kumar at LINKEDIN
Rajesh Kumar at PINTEREST
Rajesh Kumar at QUORA
Rajesh Kumar at WIZBRAND