在阿里云服务器上安装了一个Nginx 做了如下的配置
location /foo {
default_type application/json;
return 200 '{"hello":"world"}';
}
不指定Host请求头可以正常访问
➜ ~ curl 'http://114.55.176.xxx/foo'
{"hello":"world"}%
为什么随意指定了一个Host请求头 就变成了这样了呢?
➜ ~ curl 'http://114.55.176.xxx/foo' -H 'Host: foo.com'
<html>
<head>
<meta http-equiv="Content-Type" content="textml;charset=UTF-8" />
<style>body{background-color:#FFFFFF}</style>
<title>TestPage184</title>
<script language="javascript" type="text/javascript">
window.onload = function () {
document.getElementById("mainFrame").src= "http://batit.aliyun.com/alww.html";
}
</script>
</head>
<body>
<iframe style="width:860px; height:500px;position:absolute;margin-left:-430px;margin-top:-250px;top:50%;left:50%;" id="mainFrame" src="" frameborder="0" scrolling="no"></iframe>
</body>
</html>
都是随意指定的 为什么有些Host请求头有问题 有些就没问题呢?
➜ ~ curl 'http://114.55.176.xxx/foo' -H 'Host: 111.com'
{"hello":"world"}%
➜ ~ curl 'http://114.55.176.xxx/foo' -H 'Host: foo.cn'
{"hello":"world"}%