我的 .htaccess 中有这个重写规则
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^([^/.]+)/?(.*)$ /$1.php/$2 [QSA,L]
RewriteRule ^api/([a-z]+)/([a-z]+) /api/$1_$2.php
如何修改它以将我的 URL 中的所有内容更改为小写?
即这个:
www.mysite.com/ThisURL/SHOULD/be_all_lowercse
应该
www.mysite.com/thisurl/should/be_all_lowercase