return 200 '<h1>WELCOME TO MOBILE WEB!</h1>'; } return 200 '<h1>MOBILE INDEX WEB!</h1>'; } location ^~ /data { root /data/www/images; try_files /$arg_file /image404.html; } location = /image404.html { return 200 '<h1>IMAGE NOT FOUND!</h1>'; } # 默认处理 location / ...
rewrite 模块 return 指令 该指令用于返回内容或者重定向 该指令有3种格式return 状态码 [内容]; # 返回内容 return 状态码 URL; # 用于重定向 return URL; # 用于重定向,默认使用302临 nginx Nginx html HTTP nginx return返回 nginx return指令 指令概述配置指令是一个字符串,可以用单引号或者双引号括起来,...
返回text ### 配置指定路径返回相应text信息location ~ ^/get_info1{default_type text/html;return200'hello world!';}location ~ ^/get_info2{default_type text/html;return200'你好,世界!';}location ~ ^/get_info3{default_type text/html;add_header Content-Type'text/html; charset=utf-8';return...
set $username zhangsan; return 200 <html>><p>username:$username</p><p>request_uri:$request_uri</p><p>document_uri:$document_uri</p><p>uri:$uri</p><p>query_string:$query_string</p><p>args:$args</p></html>; } 发起请求:http://192.168.110.98/test?name=tom 2.2 if指令 作用域...
default_type text/html; return 200 'hello world!'; } 2、返回json格式 1 2 3 4 location ~ ^/get_json { default_type application/json; return 200 '{"status":"success","result":"hello world!"}'; } 3、也可以简单的根据请求的URL返回不同的字符串 ...
通过server 找到 /usr/share/nginx/html/proxy/index.html 资源,最终展示出来。 配置负载均衡 配置负载均衡主要是要使用 upstream 指令。 我们把 121.42.11.34 服务器作为上游服务器,做如下配置: server{ listen 8020; location / { return 200 'return 8020 \n'; } } server{ listen 8030; location / { ret...
location/{proxy_pass http://xxx.com/;error_page301302303=@handle_redirect;}location @handle_redirect{proxy_pass $upstream_http_location;error_page307=@handle_redirect_307;}location @handle_redirect_307{return302"http://yyy.com$upstream_http_location";} ...
通过nginx解决: if ($http_referer ~ 'baidu.com') { return 200 "<html><script>window.location.href='//$host$request_uri';</script></html>"; } 如果写成: return http://$host$request_uri; 在浏览器中会提示“重定向的次数过多”,因为会被反复跳转。
server{listen8080;server_name localhost;default_type text/plain;#获取请求头里面username对应的值return200$http_username;} 代理服务器: 192.168.200.133 代码语言:javascript 复制 server{listen8080;server_name localhost;location/server{proxy_pass http://192.168.200.146:8080/;#修改请求头,添加一个username,值...
error_page 500 502 503 504 /50x.html; 这个配置将所有的5xx服务器错误都重定向到/50x.html页面。 3、更改响应状态码: error_page 404 =200 /empty.gif; 这个配置在遇到404错误时,会返回/empty.gif文件的内容,但响应状态码会被更改为200。这种技术有时用于防止搜索引擎将404错误页面编入索引。