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: