检测到 URL 的 svn tortoisesvn 重定向循环

svn tortoisesvn redirect cycle detected for URL

我知道关于我的主题的重复问题。 但其他答案对我没有帮助。

下面是我的 conf 文件(我只显示与默认 conf 相比更改的 conf)

httpd.conf

<Directory />
    AllowOverride none
    #Require all denied (default)
    Require all granted (change)
</Directory>

10-subversion.conf

LoadModule dav_svn_module     modules/mod_dav_svn.so
LoadModule authz_svn_module   modules/mod_authz_svn.so
LoadModule dontdothat_module  modules/mod_dontdothat.so

Alias /test /home/svn/test
<Location /test>
DAV svn
SVNParentPath /home/svn/test
SVNListParentPath On
AuthType Basic
AuthName "SVN Repository"
</Location>

test文件夹中有repo1,repo2等库

以下所有在网络浏览器中运行良好。

http://127.0.0.1/test

http://127.0.0.1/test/repo1

http://127.0.0.1/test/repo1/trunk

http://127.0.0.1/test/repo1/tags

但乌龟工作中没有一个link以下:

http://127.0.0.1/test/repo1

此 link 显示以下错误:

检测到 URL'http://127.0.0.1/test/repo1'

的重定向循环

其他 link(/test, /test/repo1/tags, /test/repo2/trunk) 效果很好。

我该如何解决这个错误?

AuthType 基本

->

授权类型None

我解决了..