Forum Moderators: phranque
rewriteCond %{REQUEST_URI}!^/(imagedirĶimagedir2Ķimagedir3)/
rewriteCond %{REQUEST_URI} !^/(imagedirĶimagedir2Ķimagedir3)/The problem with this is that it has to be done for every rewritting rule. This is a real problem when your htaccess file is quite big.
So how can I stop all rewritting rules from affecting one directory?
Actually, you can put a new rule ahead of the ones that you don't want to run for those subdirectories:
RewriteRule ^(imagedirĶimagedir2Ķimagedir3) - [L]
Jim