Apache2.4.11 virtualhostconfiguration无法正常工作

时间:2015-07-23 06:58:40

标签: php linux apache lamp httpd.conf

我已经尝试了以下代码将域名指向特定目录到linux

NameVirtualHost *.80
<VirtualHost *:80>
     ServerName example.com
     DocumentRoot /var/www/html/example.com
</VirtualHost> 

但上面的代码无效。

2 个答案:

答案 0 :(得分:1)

你有没有运行a2ensite exemple.com.conf?之后重启apache。

答案 1 :(得分:0)

以上代码适用于apache2.2,因此您只需将上面的代码替换为

即可
<VirtualHost *:80>
   ServerName     example.com
   ServerAlias    www.example.com
   ServerAdmin    root@example.com
   DocumentRoot   "/var/www/html/example.com"
   CustomLog      "/var/www/html/example.com/access_log" combined
   ErrorLog       "/var/www/html/example.com/error_log"
</VirtualHost>