On 22.03.2016 12:36, Manju C wrote: > Yes, We had two <Location> directives, <Location /svn> and <Location > /svn_old>. we removed the <Location /svn_old> still same issue. > > But if we change the <Location /svn> to <Location /> or <Location /repos> > even to <Location /SVN> its working fine.
/svn is a proper prefix of /svn_old, that's what's confusing httpd. Your Location directives should read: <Location /svn/> ... </Location> and <Location /svn_old/> ... </Location> That is, you should include the trailing slash. -- Brane