用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下的目錄: