https://bz.apache.org/bugzilla/show_bug.cgi?id=58854
--- Comment #8 from Jacob P <[email protected]> --- Hi Eric, We've noticed a spike in tickets about RewriteRules no longer working after this patch. Granted, these rewrite rules look conspicuous, as in, they shouldn't work, or will result in looping, however we have enough reports of them that we think this might be a regression in behavior. We've verified these rewrites work before this patch, and now results in a ISE 500 / Max10Redirects after the patch. Example of some rewrites that are now dead looping when they didn't previously: ================================================== <IfModule mod_rewrite.c> RewriteEngine Off RewriteBase /blogg/ RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^(.+) - [PT,L] RewriteCond %{REQUEST_URI} !=/favicon.ico RewriteRule ^(.*) index.php RewriteCond %{HTTP:Authorization} !^$ RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization}] </IfModule> ================================================== <IfModule mod_rewrite.c> RewriteEngine On RewriteRule ^.*$ htaccess_tester.php </IfModule> ================================================== RewriteRule ^$ ?lang=IT [L] ================================================== RewriteRule ^public public.php [L] RewriteRule ^js.php js.php [L] ================================================== RewriteRule ^(.+) - [PT,L] ================================================== RewriteRule ^(.*) index.php ================================================== Any thoughts on this? -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
