Hello i am looking to make the equivalent apache rewrite from the nginx rewrite
rewrite ^/$ /ui permanent;
Basically, I want to make proxy_pass for ip 1.2.3.4 in location / become 1.2.3.4/ui
I tried the following without success, RewriteEngine on RewriteRule ^/$ ui
Thanks!