Ich habe dav_svn bei Apache installiert und habe das Problem, dass *.rtf-Dateien nicht heruntergeladen, sondern im Browserfenster angezeigt werden (was nicht ok ist, da diese Inhalte nicht menschenlesbar sind). Andere Dateitypen wie z.B. *.exe-Dateien werden jedoch korrekt heruntergeladen.
Die Datei mods-available/dav_svn.conf ist vollständig auskommentiert.
Meine Hauptkonfigurationsdatei sieht wie folgt aus:
<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>
Was kann ich tun, um den Download von *.rtf-Dateien zu erzwingen?