Solution for: #6: SVN directory is viewable through Apache

Use httpd.conf to deny access to .svn files or redirect access

1
In particular:
RedirectMatch 404 /\\.svn(/|$)
This will respond with a 404 every time a .svn directory is accessed by a HTTP client.

Comments

  1. thanks!

    johnny on December 30, 2009, 04:39 AM UTC