1
當我發送它們時,Nginx似乎是urldecode並匹配url。無論如何要阻止這一點?url中的nginx urldecoding斜槓
curl https://localhost/schedule/Joe+%2F+%26+Smith
越來越受
rewrite ^/schedule/([^/]+)/([^/]+)$ /a.php?first=$1&last=$2;
而不是
rewrite ^/schedule/([^/]+)$ /a.php?fullname=$1;