In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-09-26 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >
Share
Shulou(Shulou.com)06/02 Report--
Nginx does not support if nesting, nor does it allow logical judgment in if. The following error will be reported:
Nginx: [emerg] "if" directive is not allowed
When the business needs multiple conditional judgments, it can be realized with the help of intermediate variables.
For example, our website has multiple sub-domain names on the pc side, while there is only one domain name on the mobile end. The corresponding relationship is as follows:
Www.test.com-- > m.test.comsub1.test.com-- > m.test.com/sub1sub2.test.com-- > m.test.com/sub2sub3.test.com-- > m.test.com/sub3
Effect to be achieved: 301 jumps to the corresponding mobile domain name when the pc domain name is accessed on the mobile side
The rewriting rules for nginx are as follows:
# whether it is the mobile set $mobile 0 if ($http_user_agent ~ * (mobile | nokia | iphone | ipad | android | samsung | htc | blackberry) {set $mobile 1;} # acquire the subdomain set $prefix 1 if ($host ~ * "sub1.test.com") {set $prefix 2;} if ($host ~ * "sub2.test.com") {set $prefix 3;} if ($host ~ * "sub3.test.com") {set $prefix 4;} set $sign "$mobile} ${prefix}" If ($sign = 11) {rewrite ^ (. *) http://m.test.com$1 permanent;} if ($sign = 12) {rewrite ^ (. *) http://m.test.com/sub1$1 permanent;} if ($sign = 13) {rewrite ^ (. *) http://m.test.com/sub2$1 permanent;} if ($sign = 14) {rewrite ^ (. *) http://m.test.com/sub3$1 permanent;}
The above is the whole content of this article, I hope it will be helpful to your study, and I also hope that you will support it.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
The market share of Chrome browser on the desktop has exceeded 70%, and users are complaining about
The world's first 2nm mobile chip: Samsung Exynos 2600 is ready for mass production.According to a r
A US federal judge has ruled that Google can keep its Chrome browser, but it will be prohibited from
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
About us Contact us Product review car news thenatureplanet
More Form oMedia: AutoTimes. Bestcoffee. SL News. Jarebook. Coffee Hunters. Sundaily. Modezone. NNB. Coffee. Game News. FrontStreet. GGAMEN
© 2024 shulou.com SLNews company. All rights reserved.