I would like to redirect admin subdirectory to a subdomain. I tried to create this rule for Nginx however it's not working:
location ^~ /admin/ {
rewrite ^/admin(.*) http://admin.example.com$uri permanent;
}
Thank you Regards
I would like to redirect admin subdirectory to a subdomain. I tried to create this rule for Nginx however it's not working:
location ^~ /admin/ {
rewrite ^/admin(.*) http://admin.example.com$uri permanent;
}
Thank you Regards
Something like this should do the job: