Re: Redirect url request to a new site is not working.

2021-04-28 Thread Sergey A. Osokin
Hi Eric, hope you're doing well these days. On Wed, Apr 28, 2021 at 07:52:48PM +, Eric Speake wrote: > > I need to redirect https://mysite.com/meeting to > https://new.mysite.com/events/meet/meeting ... The following one should work: location ~ ^/meeting { return 301 https://

Redirect url request to a new site is not working.

2021-04-28 Thread Eric Speake
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