How do I convert mod_rewrite (QSA option) to Nginx

2019-01-24 06:00发布

I'm looking to convert the following mod_rewrite rule to the Nginx equivalent:

RewriteRule ^foo/(.*)$ /bar/index.php?title=$1 [PT,L,QSA]
RewriteRule ^foo/*$ /bar/index.php [L,QSA]

So far I have:

rewrite ^foo/(.*)$ /bar/index.php?title=$1&$query_string last;
rewrite ^foo/?$ /bar/index.php?$query_string break;

The problem is (I think!) that the query string doesn't get appended. I haven't found a way to port the QSA argument to Nginx.

2条回答
SAY GOODBYE
2楼-- · 2019-01-24 06:39

These rewrite rules made the scripts work:

rewrite ^/foo/([^?]*)(?:\?(.*))? /bar/index.php?title=$1&$2;
rewrite ^/foo /bar/index.php;
查看更多
男人必须洒脱
3楼-- · 2019-01-24 06:53

QSA is automatic in NGINX.

If you don't want it, add ? to the end of your new location

rewrite ^/foo /bar/index.php? last;

查看更多
登录 后发表回答