Go to content Go to menu

Lately, I've been making the live version of websites be working copies of a SVN repository. When you do this, it's probably a good idea to hide the .svn direcories as a security measure.

Put this in your Apache configuration file, httpd.conf to restrict access to .svn directories.

<directorymatch "\.svn/">
    Order deny,allow 
    Deny from all 
</directorymatch>