【发布时间】:2016-07-05 21:01:13
【问题描述】:
我尝试使用 nginx 的重写来更改 url,例如
<domain>/index.php?mode=a/b
到
<domain>/a/b
但我的尝试没有结果。
location / {
rewrite ^(.*)$ index.php?mode=$1 break;
}
这有什么问题?
【问题讨论】:
标签: mod-rewrite nginx url-rewriting rewrite nginx-location