这可能吗? SVN客户端无法使用以下错误消息访问存储库时遇到了麻烦:


存储库永久移至“ http://svn.example.com/test/”;请搬迁


如果我在尝试访问的路径的末尾添加“ /”,它将再次将其剥离,并显示相同的错误消息。我的配置文件如下所示:

<VirtualHost *>
  ServerName svn.example.com
  # Normal VirtualHost stuff here

  <Location /svn>
    # Uncomment this to enable the repository
    DAV svn
    SVNParentPath /some/path/to/repositories

    # Setup mod_authz_svn, etc, etc here
  </Location>
</VirtualHost>


注意:这有效。但是,如果我将Location更改为/,它将再次因上面的错误而停止工作。可以使用根目录,还是我在这里丢失了一些东西?当从根目录提供存储库时,Firefox可以很好地显示存储库列表。

正如其他人指出的那样,这似乎只是命名虚拟主机内部的一个问题……任何人都知道为什么?

最佳答案

问题是您还使用文档根目录作为存储库根目录(我不是在怪您,这应该可以,但是不能)。

尝试将DocumentRootSVNParentPath指令指向不同的物理位置,因此生成的配置文件应如下所示(缩写):

<VirtualHost *:80>
    DocumentRoot /home/svn.example.com/docroot

    <Location />
        SVNParentPath /home/svn.example.com/svnroot
        SVNListParentPath on
    </Location>
</VirtualHost>


同样,如@Nigel Jewell所说,出于理智,请删除该Rewrite块。

07-26 03:23