Looking at the logs I see this:
192.168.250.30 - - [06/May/2021:13:27:27 -0500] "GET /summersummit HTTP/1.1"
301 185 "-"
While seeing the 301 it's not redirecting anywhere.
Thanks,
From: nginx On Behalf Of Eric Speake
Sent: Thursday, May 6, 2021 9:02 AM
To: nginx@n
I am trying to redirect mydomain.com/summersummit to
new.mydomain.com/events/employee-events/summersummit2021. Here is what I have
in my config:
location /summersummit {
return 301 https://new.mydomain.com/events/employee-events/summersummit2021;
}
I have also tried:
rewrite ^/summer
I need to redirect https://mysite.com/meeting to
https://new.mysite.com/events/meet/meeting
Here us what I have in my config:
location ~* / {
#Custom Redirects
rewrite ^(/meeting.*) https://new.mysite.com/events/meet$1 permanent;
}
I have tried a few other tweaks, but nothing is wor