配置xampp搭建简单的web服务器环境

1. 下载xampp,地址:https://www.apachefriends.org/index.html

2. 解压并安装,一直next,直到安装成功。linux环境安装在/opt/lampp下

3. 配置虚拟路径
  1)修改/opt/lampp/etc下的httpd-conf文件,window环境应该是apache目录下的httpd-conf文件
    <Directory />
      #AllowOverride none
      #Require all denied
      Order deny,allow
      Allow from all
    </Directory>

  # Virtual hosts
  Include etc/extra/httpd-vhosts.conf


  2)修改etc下httpd-vhost添加虚拟主机
    <VirtualHost 127.0.0.2:80>
      ServerAdmin [email protected]
      DocumentRoot "/home/ide/vscode/www/"
      ServerName www.example.com
      ServerAlias test.example.com
      ErrorLog "/home/ide/vscode/www/com-error_log"
      CustomLog "/home/ide/vscode/www/com-access_log" common
    </VirtualHost>

猜你喜欢

转载自www.cnblogs.com/yongfengnice/p/11041475.html