Nginx替换后缀名

比如访问 http://localhost:801/index.asp
通过nginx后 http://localhost:801/index.html

location / {
     
            if ( $request_uri  ~*  \.asp$){
      #截取后缀asp的
			rewrite ^/(.*)\.asp$ /$1.html last; #后缀为asp的替换成html
			break;
			}
        }

你可能感兴趣的:(知识点,nginx)