博客园  :: 首页  :: 新随笔  :: 订阅 订阅  :: 管理

XAMPP PHP开发环境安装备忘

Posted on 2021-02-22 15:24  PHP-张工  阅读(79)  评论(0编辑  收藏  举报

xampp官网:https://www.apachefriends.org/

因为是国外网站下载很慢,可以从腾讯下载:https://pc.qq.com/detail/1/detail_3041.html

Apache 的 D:\xampp\apache\conf\httpd.conf 配置修改

<Directory />
Options FollowSymLinks
AllowOverride All
Order deny,allow
Allow from all
</Directory>

配置网站修改 D:\xampp\apache\conf\extra\httpd-vhosts.conf

<VirtualHost *:80>
    DocumentRoot "D:\WEB\wxrobot"
    ServerName www.z3.com
</VirtualHost>