且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

使用 htaccess 将 url 转换为小写,查询字符串除外

更新时间:2023-02-23 08:32:17

首先你必须把这个添加到你的 httpd.conf:

First You have to add this to your httpd.conf:

RewriteMap lc int:tolower

然后将以下代码粘贴到您的 .htaccess

Then paste the below code into your .htaccess

RewriteEngine On
RewriteBase / 
RewriteCond %{REQUEST_URI} ^[^A-Z]*[A-Z].*
RewriteRule ^ ${lc:%{REQUEST_URI}} [L,R=301]

这段代码重定向了来自

www.tESTUrl.com/sOMePath/?q=SomeStringHere

www.testurl.com/somepath/?q=SomeStringHere