Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Ok, I'm trying to achieve this:

Redirect all files of a particular filetype (except particular exceptions) to be loaded from another server, right now I'm using this rewrite rule:

RewriteEngine on
RewriteRule \.(swf|jpg|png)$ http://xivio.host22.com%{REQUEST_URI} [NC,R=302,L]

And it will redirect all the swf,jpg, or png files to another hostname to serve them. So how can I add exceptions to this rule for specific files? I've tried adding:

RewriteCond %{REQUEST_URI} ^!(log22.swf|packer.swf|sos.swf|aeVisual.swf|newBubbleSystem.swf|e.swf)$

But when I did this it completely stopped the rule from doing anything at all to the other files. Any ideas? I'm a newbie at using mod_rewrite.

share|improve this question

1 Answer

up vote 1 down vote accepted

You have to preprend ! to the condition's regex:

RewriteCond %{REQUEST_URI} !^(log22.swf|packer.swf|sos.swf|aeVisual.swf|newBubbleSystem.swf|e.swf)$

Note that ! and ^ are in different order than in your code, as you can negate the expression, but adding the ! before.

The reason the rule does not work is that it does never match.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.