AddOutputFilterByType INCLUDES support

#1
I was wondering if AddOutputFilterByType INCLUDES is supported by LiteSpeed, as I'm seeing it is not affecting a customer's site.

Is there a complete list of what doesn't work 100% with LiteSpeed?

Thanks
 
#4
I've got another question regarding this issue, this is what he was trying to do:

Code:
<FilesMatch "\.combined\.css$">
Options +Includes
AddOutputFilterByType INCLUDES text/css
SetOutputFilter INCLUDES
</FilesMatch>
So since you said it wasn't supported he used AddOutputFilter instead

Code:
<FilesMatch "\.combined\.css$">
Options +Includes
AddOutputFilter INCLUDES css
SetOutputFilter INCLUDES
</FilesMatch>
Which didn't work, however using only "AddOutputFilter INCLUDES css" outside the <FilesMatch> tags it works. Any ideas?
 
#5
just and update, I've made some tests with Apache and both worked :S I'm wondering this is still under dev or not tested enough for LSWS?
 

mistwang

LiteSpeed Staff
#8
This might work with current release.

<FilesMatch "\.combined\.css$">
Options +Includes
ForceType application/x-httpd-shtml
</FilesMatch>
 
Top