Hi there
I've planned to force WMV files to be downloaded instead of stream by Windows Media Player in some IE browsers without Download Managers
should add some special response Headers when it requests WMV files
This is my Apache configuration which works charmly:
But when i add this into LSWS Apache Style configurations doesnt work properly
no any extra response headers will be added
Whats wrong? something with my configurations? or it doesnt support Files or Header directives?
Thanks LSWS Developers, specially Geroge that i know he will answer n probably solve this issue
I've planned to force WMV files to be downloaded instead of stream by Windows Media Player in some IE browsers without Download Managers
should add some special response Headers when it requests WMV files
This is my Apache configuration which works charmly:
Code:
<Files "\.(wmv|WMV)$">
Header add Content-Description "File Transfer"
Header add Content-Type "video/x-ms-wmv"
Header add Content-Disposition "attachment"
</Files>
no any extra response headers will be added
Whats wrong? something with my configurations? or it doesnt support Files or Header directives?
Thanks LSWS Developers, specially Geroge that i know he will answer n probably solve this issue
Last edited: