lexluthor 发表于 2016-4-27 16:49:39

添加二级域名的时候一直指向default文件夹

vhost 的设置文件如下
server
    {
      listen 80;
      #listen [::]:80;
      server_name xxx.xxx.com;
      index index.html index.htm index.php default.html default.htm default.php;
      root/home/wwwroot/xxx.xxx.com;

      include wordpress.conf;
      #error_page   404   /404.html;
      include enable-php.conf;

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

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

      location ~ /.
      {
            deny all;
      }

      access_log/home/wwwlogs/xxx.xxx.com.log;
    }

nginx -t 也没有错误提示。
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
请问一下是哪一步出错了?-- NORMAL --

[ 本帖最后由 lexluthor 于 2016-4-27 16:56 编辑 ]

licess 发表于 2016-4-27 20:52:38

只看这个配置文件没错误

这个网站根目录下是否有index文件

lexluthor 发表于 2016-4-28 14:39:36

回复 2# 的帖子

index文件是存在的,是不是我godaddy的设置不对?
我在godaddy里直接把二级域名的forwarding to设置为IP地址了

lexluthor 发表于 2016-4-28 15:18:14

回复 2# 的帖子

删除了一次再添加之后成功了。。。会不会是bug?
页: [1]
查看完整版本: 添加二级域名的时候一直指向default文件夹