301 rewrite loop with a lowercase URL rule and a URL slug rule [on hold]
- by anyvendetta
I need to do a 301 rewrite to force all urls to become lowercase.
I put in .htaccess (RewriteMap lc int:tolower in httpd.conf):
RewriteCond %{REQUEST_URI} [A-Z]
RewriteRule . ${lc:{REQUEST_URI}} [R=301,L]
Everything works just fine except to urls with subcategories which in this case are:
/category-1256-Product-page-example.html
The numer…