如何在NgInX中将带有查询字符串的URL重定向到没有查询字符串的URL?

前端之家收集整理的这篇文章主要介绍了如何在NgInX中将带有查询字符串的URL重定向到没有查询字符串的URL? 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我需要将包含查询字符串的URL重定向/重写为相同的URL,但没有查询字符串.例如http://domain.com/a-post-title/?fbid=xyzhttp://domain.com/a-post-title/
对不起,我的英语不好.

最佳答案
容易,只需放一个?在您重写的最后,
http://nginx.org/en/docs/http/ngx_http_rewrite_module.html#rewrite开始:

If a replacement string includes the new request arguments,the prevIoUs request 
arguments are appended after them. If this is undesired,putting a question mark at the 
end of a replacement string avoids having them appended
原文链接:https://www.f2er.com/nginx/532220.html

猜你在找的Nginx相关文章