Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use the map instruction of Nginx to realize page jump

2025-04-09 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly introduces "how to use Nginx's map instruction to achieve page jump". In daily operation, I believe many people have doubts about how to use Nginx's map instruction to achieve page jump. Xiaobian consulted all kinds of materials and sorted out simple and easy-to-use methods of operation. I hope it will be helpful for you to answer the question of "how to use Nginx's map instruction to achieve page jump". Next, please follow the editor to study!

Realization method

Add map directive rules to the http domain of nginx.conf, which contains a url rule mapping file:

# set 301Jump map $request_uri $new {include / etc/nginx/redirect.map;}

The map directive supports the introduction of a mapping file, where the content format of the redirect.map file is as follows:

~ ^ / page/mordern-php$ / page/modern-php

Currently, only one line has been added as a test, preceded by a regular expression followed by a new url to jump to, with each line ending with a semicolon.

Since https is enabled on the website, the following rules are added before the location statement in the server block that listens to port 443:

If ($new) {rewrite ^ https://www.tanteng.me$new redirect;}

This statement means that if the url matches the rule in redirect.map, it jumps to the new url rule.

Restart the nginx service and you can see the effect.

At this point, the study on "how to use the map instruction of Nginx to achieve page jump" is over. I hope to be able to solve your doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!

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.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report