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://
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