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
}
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
}
Add quotes to the string and it should work.
return 301 "https://www.domain.com$request_uri#hash";