表单里没有这个参数,为什么总是带着这个 s
laravel 的 url 重写的 nginx 配置,使用这种方式。
location / {
try_files $uri $uri/ /index.php?$query_string;
}
不要使用类似 tp 的这种
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}
}