Unified top-level domain names and www subdomain names under Nginx for automatic redirection

Source: Internet
Author: User
I have done things on Apache before, and the method to implement the two situations is very simple. add the following code as needed to/usr/local/nginx/conf/nginx. note that if your website is in a subdirectory, you may need to add the "location/subdirectory/{}" segment to achieve unified targeting of sub-directories. 1. when the user accesses the top

We have done things on Apache before to meet the requirements in two situations.

The method is simple. add the following code to the server or location segment of/usr/local/nginx/conf/nginx. conf as needed.

Note that if your website is in a subdirectory, you may need to add the "location/subdirectory/{}" segment to achieve unified targeting of the subdirectory domain name.

1. when the user accesses the top-level domain name slyar.com/?##.html, the system automatically redirects to www.slyar.com/{}}.html with www.

If ($ host = 'slyar. com '){
Rewrite ^/(. *) $ http://www.slyar.com/#1 permanent;
}

2. when a user accesses www.slyar.com/~~~.html with www, the user automatically redirects to slyar.com/~~~.html, a top-level domain name without www.

If ($ host = 'www .slyar.com '){
Rewrite ^/(. *) $ http://slyar.com/#1 permanent;
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.