Programing, Shell scripting, Windows, Linux. I'm using this as a repository for all those niggling little tasks that get done just often enough to be annoying, but maybe not often enough to commit to memory, and other things I feel like writing about.
Monday, March 3, 2008
Hiding SVN Directories using .htaccess
You can use the .htaccess file to hide specific directories pretty easily using a simple rewrite rule
RewriteEngine on RewriteRule \.svn/ - [F]
This same format could be used to hide any directory on a web server.
No comments:
Post a Comment