ubuntu下xampp配置虚拟主机

ubuntu下xampp配置虚拟主机
现在/opt/lampp/htdocs下面建一个目录test
test里面建一个文件test.html,文件里面随便打些字作为一会我们验证成功的依据。

sudo gedit /opt/lampp/etc/httpd.conf
搜索vhost找到下面这句话
#Include etc/extra/httpd-vhosts.conf
把前面的#号删除
Include etc/extra/httpd-vhosts.conf
保存 关闭

sudo gedit /opt/lampp/etc/extra/httpd-vhosts.conf
把没有用的用#号注释掉

#    ServerAdmin [email protected]
DocumentRoot /opt/lampp/htdocs/test
ServerName test.com
#    ServerAlias www.test.com
#    ErrorLog logs/test.com-error_log
#    CustomLog logs/test.com-access_log common

sudo gedit /etc/hosts
在文件里加上一句
127.0.0.2    test.com
保存 关闭

重启lampp
sudo /opt/lampp/lampp restart

在浏览器访问test.com

转载于:https://www.cnblogs.com/renxuefei/archive/2012/10/20/2732662.html

你可能感兴趣的:(ubuntu下xampp配置虚拟主机)