将.htaccess转换为nginx?

时间:2015-06-18 06:40:55

标签: .htaccess nginx

以下是.htaccess,

RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]

我使用winginx来获取nginx重写,即

rewrite ^/(.+)$ /index.php?url=$1 last;

但它没有达到预期效果。

原始网址为:http://xxxx/foo/info/getinfo/123/

转换后的网址应为: http://xxx/foo/index.php?url=info/getinfo/123/

1 个答案:

答案 0 :(得分:0)

固定!将其更改为以下

rewrite ^/foo/(.*)$ /foo/index.php?url=$1 break;