server
{
listen 80;
server_name a.abc.cn;
index index.php index.html index.htm default.php default.htm default.html;
root /www/wwwroot/abc.cn;
location = / {
return 403;
}
access_log /www/wwwlogs/abc.cn.log;
error_log /www/wwwlogs/abc.cn.error.log;
}
如上面加上红色的代码,这样a.abc.cn就无法访问,a.abc.cn/about.html等其他链接可以正常访问。