Apache FilesNotMatch regex?
I'm looking for something like FilesNotMatch (like filesmatch, but is triggered when the regex returns false), how can I do something l开发者_如何学编程ike this? I'm doing this right now:
<FilesMatch "/(log22.swf|packer.swf|sos.swf|e.swf|newBubbleSystem.swf|aeVisual.swf)$">
#Stuff here
</FilesMatch>
FilesNotMatch is not necessary. Just
<FilesMatch "/!(log22.swf|packer.swf|sos.swf|e.swf|newBubbleSystem.swf|aeVisual.swf)$">
#Stuff here
</FilesMatch>
精彩评论