使用htaccess将URL的最后一部分更改为小写?

时间:2014-01-09 08:56:03

标签: .htaccess url uppercase lowercase

我想如果有人输入这样的网址

  1. http://sim.com/Contact
  2. http://sim.com/CONTACT
  3. 然后它会被重定向到http://sim.com/contact

1 个答案:

答案 0 :(得分:1)

首先在httpd.conf文件末尾的<VirtualHost>部分 OR 中添加此行:

RewriteMap lc int:tolower

然后在.htaccess文件中包含此规则:

RewriteEngine on
RewriteRule ^(.*?[A-Z].*)$ /${lc:$1} [R=301,L]