我正在通过Apache使用SVN dav_svn_module
,如下所示:
<Location /svn>
DAV svn
SVNParentPath C:/svn_repository
AuthName "Subversion Repository"
...
</Location>
这让我可以访问我的回购:
C:/svn_repository/repo1
C:/svn_repository/repo2
C:/svn_repository/repo3
通过以下网址:
https://examples.com/svn/repo1
https://examples.com/svn/repo2
https://examples.com/svn/repo3
这些网址效果很好。当我去/ svn(没有回购名称)时,我得到403 /禁止回复。我想看看是否有回购清单。那可能吗?
答案 0 :(得分:42)
添加此行
SVNListParentPath on
在SVNParentPath下面。重启apache。