Why doesn't Subversion allow to commit .htaccess files?

后端 未结 6 1222
一向
一向 2021-01-20 19:46

I can\'t commit .htaccess files from my Windows SVN client (TortoiseSVN). The error that is returned is:

Could not read status line: Existing connecti

6条回答
  •  无人及你
    2021-01-20 20:10

    Just found out how to fix that issue - just put this into your virtual host configuration in order to override global http.conf:

    
        Order allow,deny
        Allow from all
        Satisfy All
    
    

    Source

    THIS is the correct answer for sure (tested), but the op abandoned his question :/

提交回复
热议问题