VPS侦探论坛
标题:
请问, 如何让Nginx中URL不区分大小写
[打印本页]
作者:
biyexp
时间:
2013-1-4 10:16
标题:
请问, 如何让Nginx中URL不区分大小写
请教啦!
作者:
licess
时间:
2013-1-4 14:15
nginx在./configure 参数里加上--with-http_perl_module 重新编译安装
在nginx.conf http段里增加
perl_set $url '
sub {
my $r = shift;
my $re = lc($r->uri);
return $re;
}
';
需要区分大小的server里增加:
if ($uri ~ [A-Z]){
rewrite ^(.*)$ $url last;
}
重启nginx
欢迎光临 VPS侦探论坛 (https://bbs.lnmp.com/)
Powered by Discuz! X3.4