xampp 搭建 web mac上
Posted Ali|备份日志
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xampp 搭建 web mac上相关的知识,希望对你有一定的参考价值。
1、安装
2、修改数据库密码,删除phpmyadmin ,用navicat 控制数据库
3、修改/Applications/XAMPP/xamppfiles/etc/extra/httpd-vhosts.conf 修改需要部署的网站属性
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot /Users/ali/PhpstormProjects/jjr
ServerName t.xx.com
ServerAlias t.xx.com
ErrorLog logs/t.xx.com-error_log
CustomLog logs/t.xx.com-access_log common
</VirtualHost>
4、修改/Applications/XAMPP/xamppfiles/etc/httpd.conf
a..打开Include etc/extra/httpd-vhosts.conf
b..设置允许访问路径
<Directory />
AllowOverride none
Require all granted
</Directory>
5、重启服务器!OK
以上是关于xampp 搭建 web mac上的主要内容,如果未能解决你的问题,请参考以下文章