现在我的nginx重写conf:
location{
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}
正确的网址是:
http://aaa.com/api/home?id=1
现在我想添加php扩展,将url更改为:
http://aaa.com/api/home.php?id=1
我应该如何配置我的nginx?