NGINX $http_user_agent 導致 404 回應

NGINX $http_user_agent 導致 404 回應

當將使用者代理程式與子字串“MSIE 8”配對時,以下條件會導致 404 重定向嗎?

 #Begin IE8 Hack
 if ($http_user_agent ~* 'MSIE 8') {
     #set $hack "I";
 }
 #End IE8 Hack

註解掉會if ($http_user_agent...停止 404 重定向。

這裡發生了什麼事?

捲曲請求

捲曲-XGET'https://localhsot/[電子郵件受保護]' -v -A'Mozilla/4.0(相容;MSIE 8.0;Windows NT 6.1;WOW64;Trident/4.0;SLCC2;.NET CLR 2.0.50727;.NET CLR 3.5.30729;.NET CLR 3.0.30729;電腦6.0;.NET4.0E;

環境

  • NGINX 1.6.2
  • Linux Debian 7 3.2.0-4-amd64

完整配置

server {

listen 80 default_server;

root /var/www/frontend;

#Begin IE8 Hack
error_page               418 = @PATCH;
location @PATCH {
  proxy_method          PATCH;
  proxy_pass            http://0.0.0.0:3001;
  proxy_redirect        default;
}
#End IE8 Hack

location / {
  #Begin IE8 Hack
  if ($http_user_agent ~* 'MSIE 8') {
    #set $hack "I";
  }
  #if ($request_method = PUT) {
  #   set $hack "${hack}E";
  #}
  #if ($hack = IE) {
  #   return 418;
  #}
  #End IE8 Hack

  proxy_pass            http://0.0.0.0:3001/v1/;
  proxy_redirect        default;
 }
}

相關內容