nginx虚拟主机server_name以数字结尾的问题

如果配置一个虚拟主机如下,其中三个server_name的参数,最后一个域名参数不能使用,使用最后一个域名,nginx自动定向到nginx的欢迎界面,而不是这里配置的root下的index.php文件,难道域名不能以数字结尾还是什么?

server{
        listen 80;
        server_name www.dsh.tp www.dshtp5.com www.dsh.tp5;
        root /data/www/tp/public;
        index index.html index.htm index.php;
        location \ {
                #rewrite ^/(.*)\.htmp$ /index.html;
               try_files $uri $uri/ /index.php?$args;


}
        location ~ \.php$ {
                        include fastcgi_params;
                        fastcgi_pass 127.0.0.1:9000;
                        fastcgi_index index.php;
                        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                        try_files  $uri =404;
}
}

之后如果将index.php的内容从thinkphp5框架的欢迎界面改为其他的内容,以上3个域名就都可以访问了。之后再改回来thinkphp5的欢迎界面3个域名都可以访问。

你可能感兴趣的:(nginx虚拟主机server_name以数字结尾的问题)