虚拟机lamp环境下,Apache配置虚拟主机
Posted Timothy_lai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了虚拟机lamp环境下,Apache配置虚拟主机相关的知识,希望对你有一定的参考价值。
1、在Apache配置文件中开启虚拟主机功能:即:Include etc//extra/httpd-vhosts.conf把前面的#去掉;
2、在extra目录下找到文件httpd-vhosts.conf,添加如下配置:
<Directory "/Data/www/thinkphp"> Options Indexes FollowSymLinks Includes ExecCGI AllowOverride All Require all granted </Directory> <VirtualHost *:80> ServerAdmin [email protected] DocumentRoot "/Data/www/thinkphp" ServerName lamp.tp.com ServerAlias www.lamp.tp.com ErrorLog "/log/tp-error_log" CustomLog "/log/tp-access_log" common </VirtualHost>
3、重启Apache;
4、在Windows中修改host文件,让虚拟主机的IP指向该域名,如:192.168.33.10 lamp.tp.com
以上是关于虚拟机lamp环境下,Apache配置虚拟主机的主要内容,如果未能解决你的问题,请参考以下文章
linux搭建Lamp(centos7+apache+mysql)