用Thinkphp搭的网站,Nginx做代理服务器。
Nginx rewrite配置如下:
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s= last;
break;
}
正常地址:
http://aaa.com/api/home?id=1
想改成下面这样也能访问(加上后缀 .php):
http://aaa.com/api/home.php?id=1
请教Nginx如何配置?
匹配api下的目录: