我的NGINX目前設定如下
location /modules/news/ {
try_files $uri /modules/news/view.tag.php?var=$request_uri;
}
當網址是https://www.xn.com.tw/modules/news/view.tag.php/3 時modules/news/view.tag.php可以$_GET['var'] = view.tag.php/3我只希望$_GET['var'] = 3,如果不使用PHP過濾字串,
NGINX設定要如何改才能只讓3被GET?