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;
index index.html index.php index.htm;
error_page 400 /errpage/400.html;
error_page 403 /errpage/403.html;
error_page 404 /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.com
ServerAlias bbs.hantoll.com m.hantoll.com
ErrorDocument 400 /errpage/400.html
ErrorDocument 403 /errpage/403.html
ErrorDocument 404 /errpage/404.html
include conf/rewrite/hantollbbs.conf
php_admin_value open_basedir /www/web/hantoll_com:/tmp
<IfModule mod_deflate.c>
DeflateCompressionLevel 7
AddOutputFilterByType 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>
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。