Wenn ich zum Beispiel die folgende Route umschreiben möchte: /user?id=55/questionto /dispatch, wie soll ich sie schreiben?
小伙看你根骨奇佳,潜力无限,来学PHP伐。
location /question/ { rewrite ^/question(.*) /dispatch$1 last; } location /user/ { if ($query_string = "id=55") { rewrite ^/user(.*) /dispatch$1 last; } }
location /question/ {
rewrite ^/question(.*) /dispatch$1 last;
}
location /user/ {
if ($query_string = "id=55") { rewrite ^/user(.*) /dispatch$1 last; }
location /question/ {
}
location /user/ {
}