apache dav_svn: rtf 파일 다운로드

apache dav_svn: rtf 파일 다운로드

Apache에 dav_svn을 설치했는데 *.rtf 파일이 다운로드되지 않고 대신 브라우저 창에 표시되는 문제가 있습니다(이러한 내용은 사람이 읽을 수 없기 때문에 문제가 됩니다). 그러나 *.exe 파일과 같은 다른 파일 형식은 올바르게 다운로드됩니다.

mods-available/dav_svn.conf 파일은 완전히 주석 처리되었습니다.

내 기본 구성 파일은 다음과 같습니다.

<FilesMatch "\.(?i:doc|docx|xls|xlsx|odf|rtf|p12|pfx|ppt|pptx)$">
        ForceType application/octet-stream
        Header set Content-Disposition attachment
</FilesMatch>

<VirtualHost x.x.x.x:443>
        .................

        <Location /svn>
                DAV svn
                SVNParentPath /path/to/repositories/

                # our access control policy
                AuthzSVNAccessFile /path/to/repositories/access_control

                # try anonymous access first, resort to real
                # authentication if necessary.
                Satisfy Any
                Require valid-user

                # how to authenticate a user
                AuthType Basic
                AuthName "Subversion repository"
                AuthUserFile /path/to/repositories/.htpasswd
        </Location>
</VirtualHost>

*.rtf 파일이 다운로드되도록 하려면 어떻게 해야 합니까?

관련 정보