On Sat, Jun 02, 2012 at 07:39:46PM +0900, Masaru Kitajima wrote: > Stefan, > > I have one website configuration and its document root is /var/www/html/. > This is where I want to put the php files. No other website is configured. > > And I want to manage there versions with subversion and its repository > is /lib/svn/project. > > Do you recommend to disable /var/www/html/?
Yes. Please try to disable the other website and check if that makes the problem go away. What URL do you use to access the website? Is the website at '/' ? Please make sure that <Location /svn> and the website location do not overlap. Else, Apache HTTPD might mis-route requests destined for Subversion to the website, and vice-versa. Qutoing http://svnbook.red-bean.com/en/1.7/svn.serverconfig.httpd.html Be sure that when you define your new Location, it doesn't overlap with other exported locations. For example, if your main DocumentRoot is exported to /www, do not export a Subversion repository in <Location /www/repos>. If a request comes in for the URI /www/repos/foo.c, Apache won't know whether to look for a file repos/foo.c in the DocumentRoot, or whether to delegate mod_dav_svn to return foo.c from the Subversion repository. The result is often an error from the server of the form 301 Moved Permanently.