The main function of the brower module is to determine whether the browser is new or old based on the value of "User-Agent" in the http request header and the browser's characteristic characters, and generate corresponding variables for use in subsequent request processing logic. 1. IntroductionThe ngx_http_browser_module module generates variables by judging the value of the "User-Agent" request header for subsequent request logic processing. 2. List of built-in variables $modern_browser $ancient_browser $msie 3. Configuration ExampleIdentification logic configuration of modern browsers: modern_browser_value "modern."; # modern_brower specifies which browser and its version are considered modern browsers. The configuration format will be described later in modern_browser msie 5.5; modern_browser gecko 1.0.0; modern_browser opera 9.0; modern_browser safari 413; modern_browser konqueror 3.0; When the browser is judged to be a modern browser, the modern_browser variable is equal to "modern.", which is the variable configured by modern_browser_value. index index.${modern_browser}html index.html; Compatibility judgment of old browsers: modern_browser msie 5.0; modern_browser gecko 0.9.1; modern_browser opera 8.0; modern_browser safari 413; modern_browser konqueror 3.0; modern_browser unlisted; # ancient_browser configures which substrings are identified as ancient browsers ancient_browser Links Lynx netscape4; # When the browser is identified as an ancient browser, ancient_browser is 1; here you can do compatibility processing or give the user a direct prompt to update or replace the modern browser; if ($ancient_browser) { rewrite ^ /ancient.html; } 4. Configuration formatSyntax: ancient_browser string ...; Default: — Context: http, server, location When configuring the "User-Agent" header with a seed string, it is judged as an old browser. The special substring "netscape4" is equivalent to the regular expression: ^Mozilla/[1-4] Syntax: ancient_browser_value string; Default: ancient_browser_value 1; Context: http, server, location When an ancient browser is identified, the value of the $ancient_browser variable defaults to 1; Syntax: modern_browser browser version; modern_browser unlisted; Default: — Context: http, server, location When configuring which browser and which version to use, it is determined to be a modern browser. The browser value is: msie, gecko, opera, safari, konqueror. The version definition format is X, XX, XXX, or XXXX. The maximum value of each format is: 4000, 4000.99, 4000.99.99, and 4000.99.99.99. unlisted is a special string. When a browser does not appear in the matching range of modern_browser and ancient_browser, it is regarded as a modern browser. Otherwise it is considered an ancient browser. If the "User-Agent" header is not provided in the request header, it is considered not to appear in the matching list. Syntax: modern_browser_value string; Default: modern_browser_value 1; Context: http, server, location When a modern browser is identified, the value of the $modern_browser variable defaults to 1; 4. Summaryngx_http_browser_module provides a browser compatibility judgment mechanism, which makes us more elegant and efficient when dealing with compatibility between old and new browsers. You can use it more in actual needs, extract the browser version from the business logic, and make the business more like a business without considering other things. This is the end of this article about the specific use of the autoindex module in the Nginx Http module series. For more relevant Nginx autoindex module content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Nofollow makes the links in comments and messages really work
background PNG images take up more storage space ...
As one of the most popular front-end frameworks, ...
Wildcard categories: %Percent wildcard: indicates...
When I first taught myself web development, there...
The methods of installing nginx and multiple tomc...
Achieve results html <h2>CSS3 Timeline</...
text OK, next it’s time to show the renderings. O...
First of all, we know that this effect should be ...
Table of contents 1. Function debounce 1. What is...
Table of contents 1. Rule 1: Object.Method() 1.1 ...
Table of contents Preface optimization Extract va...
need Add a paging bar, which can jump to the page...
Table of contents Install Tomcat Download Tomcat ...
There are already many articles about slot-scope ...
1. Problem Forgot password for mysql5.7 under lin...