Apache:使用SVNParentPath时允许浏览目录?

我有以下设置:

<Location /repos> DAV svn SVNParentPath /home/svn/repos AuthType Basic AuthName "SVN" AuthUserFile /home/svn/.htpasswd Order deny,allow Require valid-user </Location> 

用户可以像这样访问他们的svn仓库:

 http://theserver/repos/therepository 

如果您尝试访问浏览器中的以下地址…

 http://theserver/repos 

你得到一个403禁止。 我想这样做,以便用户可以浏览该文件夹,并查看存储库。

我想join以下内容

 <Directory /home/svn/repos> Options +FollowSymlinks +Indexes AllowOverride all </Directory> 

会这样做,但我仍然得到403禁止…

有什么想法吗?

SVNListParentPath设置为On然后重试。