I have this rewrite rule in my .htaccess
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^([^/.]+)/?(.*)$ /$1.php/$2 [QSA,L]
RewriteRule ^api/([a-z]+)/([a-z]+) /api/$1_$2.php
How can I modify this to change everything in my URL to lowercase?
i.e. This:
www.mysite.com/ThisURL/SHOULD/be_all_lowercse
Should be
www.mysite.com/thisurl/should/be_all_lowercase