Ubuntu apache多站点(灰色(连接一起的红色)字体 为命令)
温馨提示:ubuntu中 “httpd.conf” 被命名为 “apache2.conf”,其默认路径为:/etc/apache2/apache2.conf
1、编辑ini文件 $ vim /etc/apache2/apache2.conf
2、找到以下:$ /# Include the virtual host configurations:
# Include the virtual host configurations:
IncludeOptional sites-enabled/*.conf
如果上面一行前面有 “#” 则将其 去掉保存即可
3、进入目录:$ cd /etc/apache2/sites-enabled
4、编辑目录里的:$ vim 000-default.conf 文件(可能不同版本的 文件名不一致)
5、加入以下代码:
<VirtualHost *:80>
#站点目录(目录文件夹必须存在,否则重启apache会报警告)
DocumentRoot "/var/www/html/example”
#站点域名
ServerName local.example.com
</VirtualHost>
6、按 esc 键,再 :wq 保存退出
7、最后重启apache:$ /etc/init.d/apache2 restart
8、浏览器访问:local.example.com
如果无法访问:
1> 编辑hosts文件:$ vim /etc/hosts
2> 加入以下代码:
127.0.1.1 local.example.com
3> 按 esc 键,再 :wq 保存退出
4> 重新访问:local.example.com