Knowledge Base Hub

Browse through our helpful how-to guides to get the fastest solutions to your technical issues.

Home  >  Web Hosting FAQ  >  Steps to Redirect URLs Using Nginx
Top Scroll

Steps to Redirect URLs Using Nginx

 4 min

What is a Redirect?

A web server function that redirects traffic from one URL to another is called as redirect. It is an important feature when there is a need of it. You will find several types of redirects, but those commonly used are temporary and permanent. In this article, we will offer some examples of redirecting via the vhost file, forcing a HTTPS connection redirection to www and non-www, and the difference between temporary and permanent redirects.

Note: No .htaccess rules will apply as this is an Nginx server.

Common Methods for Redirects

If a URL is temporarily being served from a different location, temporary redirects (response code: 302 Found) are helpful. For example, these are helpful for maintenance and can redirect users to a maintenance page.

Permanent redirects (response code: 301 Moved Permanently) notify the browser about the old URL that it should forget and not attempt to access further. These redirects prove helpful when content has moved from one place to another.

How to Redirect?

Nginx is handled within a .conf file located in the document root directory of your site(s), /etc/nginx/sites-available/directory_name.conf. Your site’s files live on the document root directory and it can be in the /html, if you have a single site on the server. In case, there are multiple sites on your server, the root directory can be at /domain.com.

May it be anything, it will be your .conf file name. You will find the default file in the /etc/nginx/sites-available/ directory that can be copied or used to append your redirects. Or a new file name html.conf or domain.com.conf can be created.

Note: In case you select to create a new file ensure to update your symbolic links in the /etc/nginx/sites-enabled with the below command:

ln -s /etc/nginx/sites-available/domain.com.conf /etc/nginx/sites-enabled/domain.com.conf

First we will cover the example of redirection of a specific page/directory to the new page/directory.

Temporary Page to Page Redirect

server {
# Temporary redirect to an individual page
rewrite ^/oldpage$ http://www.domain.com/newpage redirect;
}

Permanent Page to Page Redirect

server {
# Permanent redirect to an individual page
rewrite ^/oldpage$ http://www.domain.com/newpage permanent;
}

Permanent www to non-www Redirect

server {
# Permanent redirect to non-www
server_name www.domain.com;
rewrite ^/(.*)$ http://domain.com/$1 permanent;
}

Permanent Redirect to www

server {
# Permanent redirect to www
server_name domain.com;
rewrite ^/(.*)$ http://www.newdomain.com/$1 permanent;
}

Sometimes you will need to change the domain name for a website. Therefore, a redirect from the old sites URL to the new sites URL will be very helpful in helping users know the domain was moved to a new URL.

Now we will check the example of redirecting an old URL to a new URL.

Permanent Redirect to New URL

server {
# Permanent redirect to new URL
server_name olddomain.com;
rewrite ^/(.*)$ http://newdomain.com/$1 permanent;
}

The redirect is added using the rewrite directive discussed earlier. The ^/(.*)$ regular expression will use everything after the / in the URL. For example, http://olddomain.com/index.html will redirect to http://newdomain.com/index.html. For permanent redirect, we add permanent after the rewrite directive as seen in the example code.

In terms of HTTPS and being fully secure, it is ideal for forcing everyone to use https:// instead of http://.

Redirect to HTTPS

server {
# Redirect to HTTPS
listen 80;
server_name domain.com www.domain.com;
return 301 https://example.com$request_uri;
}

Now the rewrite rules are in place and it is recommended to test the configuration prior to running a restart. You can check Nginx syntax with the -t flag to ensure there is not a typo present in the file.

Nginx Syntax Check

nginx -t

In case nothing is returned the syntax is correct and Nginx has to be reloaded for the redirects to take effect.

Restarting Nginx

service nginx reload

For CentOS 7 which unlike CentOS 6, uses systemd:

systemctl restart nginx

Redirects on Managed WordPress/WooCommerce

If your website is running on Nginx web server, you can set the redirects through the /home/s#/nginx/redirects.conf file. Each site will have their own s# which is the FTP/SSH user per site. You can download the plugin called ‘Redirection’ to help with a simple page to page redirect, or else you can utilize the redirects.conf file for adding more specific redirects or you can even do that using the examples explained above.

After having set the rules properly within the redirects.conf file, please contact our support and ask to reload Nginx. In case you aren’t comfortable with performing the above steps, contact our support team via chat, ticket or a phone call. Our support team is available 24/7 to help you with this.

Also Read:

Learn to Configure Redirects in cPanel
Learn to Redirect HTTP to HTTPS in WordPress with Simple Steps

For our Knowledge Base visitors only
Get 10% OFF on Hosting
Special Offer!
30
MINS
59
SECS
Claim the discount before it’s too late. Use the coupon code:
STORYSAVER
Note: Copy the coupon code and apply it on checkout.