1、添加后缀:所有/Kira/下的请求,实际请求地址都自动添加.html
举个栗子:http://localhost/Kira/index -> http://localhost/Kira/index.html
location ^~ /Kira/ {
if (!-f $request_filename){
rewrite "^/Kira/(.*)$" /$1.html;
break;
}
}
2、去除后缀:所有/Lina/下的请求,实际请求地址都自动去除.do
举个栗子:http://localhost/Lina/index.do -> http://localhost/Lina/index
location ^~ /Lina/ {
if (!-f $request_filename){
rewrite ^/Lina/(.*).do /$1;
break;
}
}