How to Redirect URL in NGINX - Ubiq BI
https://ubiq.co/tech-blog/redirect-url-nginx28.02.2020 · Redirect URL in NGINX There are multiple ways to redirect URL in NGINX. Let’s look at them one by one. If you want to temporarily redirect URL to another URL in NGINX, then add the following server block to your configuration file. server { # Temporary redirect to an individual page rewrite ^/old-url$ http://www.domain.com/new-url redirect; }