devil190 发表于 2017-12-14 17:50:16

lnmp vhost del 删除域名后,域名还是可以访问

原来有两个域名:A和B首先删除了域名 A,访问域名A,打开的是域名B
重新添加了域名A的vhost,打开的还是域名B
最后删除了域名A和B,打开的还是域名B

重新添加域名后无效果,访问的都是域名B
(域名B的路径不是默认路径)

这是怎么回事呢?

[ 本帖最后由 devil190 于 2017-12-14 17:51 编辑 ]

licess 发表于 2017-12-14 19:40:12

没生效的话一般是配置文件有问题
按反馈必读提供nginx测试结果,贴一下配置文件

devil190 发表于 2017-12-15 14:27:31

以下是域名A的配置文件:
server
    {
      listen 80;
      #listen [::]:80;
      server_name tool.A.com;
      index index.html index.htm index.php default.html default.htm default.php;
      root/mnt/website/tool.A.com;

      include none.conf;
      #error_page   404   /404.html;
      location ~ [^/]\.php(/|$)
      {
            # comment try_files $uri =404; to enable pathinfo
            try_files $uri =404;
            fastcgi_passunix:/tmp/php-cgi.sock;
            fastcgi_index index.php;
            include fastcgi.conf;
            #include pathinfo.conf;
      }

      location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
      {
            expires      30d;
      }

      location ~ .*\.(js|css)?$
      {
            expires      12h;
      }

      access_log off;
    }
这个是 lnmp vhost add 默认生成的配置,但是现在访问 域名A,打开的却是其它域名
页: [1]
查看完整版本: lnmp vhost del 删除域名后,域名还是可以访问