level 5
location = /404.html{
root html;
break;
}
location = /update.html{
root html;
break;
}
把这两合并在一起,就匹配这两个文件名,不是匹配所有html结尾的,有什么办法?
2014年04月10日 02点04分
1
level 5
location ~ (404|update).html {
root html;
break;
}
2014年04月11日 04点04分
2
3Q,,,,
2014年04月15日 08点04分