apache vhost,失去了defaut路由

时间:2015-12-28 16:08:57

标签: apache routing vhosts

我在6号,阿帕奇, 安装apache后,当我输入我的服务器作为URL我得到我的index.html wich在/ var / www / html。

现在我开始使用VirtualHost,这是我的conf:

VirtualHost *:80>
     ServerAdmin xxx@xxx.com
     DocumentRoot /var/www/html/site
     ServerName www.xxx.net
     ServerAlias xxx.net
     ErrorLog /var/log/httpd/site/error.log
     CustomLog /var/log/httpd/site/out.log common
</VirtualHost>

因此,当我去www.xxx.net时,我得到我的index.html,它位于/ var / www / html / site下,这就是我想要但是当我去我的服务器ip作为URL服务器重定向我到www.xxx.net。

我想把我的服务器ip点放在/var/www/html/index.html上!!! 任何解决方案?

1 个答案:

答案 0 :(得分:0)

所以我经过一些测试后得到它, 孤独: 解开这条线

#NameVirtualHost *:80

并为此默认路由配置添加新的VirtualHost:

<VirtualHost *:80>
     ServerAdmin xx@xxx.com
     DocumentRoot /var/www/html
     ServerName 212.212.212.212
     ServerAlias 212.212.212.212
     ErrorLog /var/log/httpd/gobal/error.log
     CustomLog /var/log/httpd/gobal/out.log common
</VirtualHost>