2

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
}
Patrik Votoček
  • 675
  • 1
  • 8
  • 15

1 Answers1

5

Add quotes to the string and it should work.

return 301 "https://www.domain.com$request_uri#hash";
Mohammad AbuShady
  • 40,884
  • 11
  • 78
  • 89