nginx 获取自定义header 的方法

1.打开 underscores_in_headers on; 可以获取自定义header
2. 以 x-wps-weboffice-token 为例

  1. 获取 $http_x_wps_weboffice_token;
    示例代码:
 location / {
         default_type text/html;
        return 500  $http_x_wps_weboffice_token;
        break;
   }
   ```

你可能感兴趣的:(php,nginx,运维)