How to implements these mime types in F5 - irules

383 Views Asked by At
<LocationMatch "\.(?i:pps)$">
             ForceType application/vnd.ms-powerpoint
             Header set Content-Disposition attachment
</LocationMatch>

ForceType application/vnd.openxmlformats–officedocument.presentationml.slideshow Header set Content-Disposition attachment

1

There are 1 best solutions below

0
On

Not sure which direction you are wanting these applied, and I'm not an apache user, but the header actions are simple. Pick your request/response event, match the appropriate string and the header actions are:

HTTP::header replace Content-Type application/vnd.ms-powerpoint
HTTP::header insert Content-Disposition attachment