I have organized my huge .htaccess file by Redirect permanent first which I would like to have executed if found. In those case, I don't want later mod_rewrite processed.
Is there any way to achieve that?
Examples:
Redirect permanent /products/example.aspx http://www.example.com/products/example/ RewriteCond %{REQUEST_URI} products/([1-9a-zA-Z\s-]+)/ RewriteRule ^products/([0-9a-zA-Z\s-]+)/tutorials(/|\.php)$ /products/$1/help/ [R=permanent,L] While above does not conflict, my .htaccess file is 60k large, and there are some simple "Redirect permanent" that seems to be ignored because a later RewriteRules (that e.g. redirects a pattern instead)
mod_rewriterules?