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 working. I know I'm missing
something simple.
Thanks,
Eric
_______________________________________________ nginx mailing list [email protected] http://mailman.nginx.org/mailman/listinfo/nginx
