Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
I have this vhost in nginx but i need to redirect with # (utm parameters) how to do it?
#
server { server_name www.example1.com; return 301 https://www.example2.com$request_uri; # here I need add utm parameters }
在字符串中添加引号,它应该可以工作。
return 301 "https://www.domain.com$request_uri#hash";