Anonymous 发表于 2014-9-27 21:30:43

求助技术达人

wdcp,环境是nginx+apache ,我只绑定了 bbs.hantoll.com 和m.hantoll.com 的域名,可是访问hantoll.com自动跳转到了bbs.hantoll.com 这是什么情况?



配置文件里面绑定的域名我重新修改了,而且服务也重启了,可是域名访问一直没有生效


nginx/conf/vhost/hantoll.com.conf文件配置为:server {
      listen       80;
      server_name bbs.hantoll.com m.hantoll.com;
      root /www/web/hantoll_com/public_html;
      indexindex.html index.php index.htm;
      error_page400 /errpage/400.html;
      error_page403 /errpage/403.html;
      error_page404 /errpage/404.html;
      location ~ \.php$ {
                proxy_pass http://127.0.0.1:88;
                include naproxy.conf;
      }
      location / {
                try_files $uri @apache;
      }
      location @apache {
               proxy_pass http://127.0.0.1:88;
               include naproxy.conf;
      }
}       /apache/conf/vhost/hantoll.com.conf配置文件为<VirtualHost *:88>DocumentRoot /www/web/hantoll_com/public_html
ServerName hantoll.comServerAlias bbs.hantoll.com m.hantoll.com
ErrorDocument 400 /errpage/400.htmlErrorDocument 403 /errpage/403.html
ErrorDocument 404 /errpage/404.htmlinclude conf/rewrite/hantollbbs.conf
php_admin_value open_basedir /www/web/hantoll_com:/tmp<IfModule mod_deflate.c>
DeflateCompressionLevel 7AddOutputFilterByType DEFLATE text/html text/plain text/xml application/x-httpd-php
AddOutputFilter DEFLATE css js html htm gif jpg png bmp php</IfModule>
</VirtualHost><Directory /www/web/hantoll_com>
    Options FollowSymLinks    AllowOverride All
    Order allow,deny    Allow from all
</Directory>      

hl530 发表于 2014-9-27 21:35:33

不懂,只能帮顶了

Anonymous 发表于 2014-9-27 21:38:09

hl530 发表于 2014-9-27 21:35 static/image/common/back.gif
不懂,只能帮顶了

第一次接触linux,第一次用面板,第一次真是苦不堪言啊,痛苦的回忆 :(

zess 发表于 2014-9-28 01:29:17

那只能说明      主域      是默认绑定的


我要是蒙对了,请给朵小红花
页: [1]
查看完整版本: 求助技术达人