server {
listen 80;
server_name xxxx.com;
access_log /tmp/access.log main;
error_log /tmp/logs/error.log;
location / {
root /var/www/test/;
}
}
上面是 nginx 的配置,现在访问 http://xxxx.com/aaa.html?id=123,在页面加载完之后取不到 id 字段。请教各位大神有办法解决吗?