您的购物车目前是空的!
XAMPP集成了PHP开发环境所需要的Apache和Mysql等基础组件。但是系统自带的根目录为/Applications/XAMPP/htdocs
。有时候我们希望把网站根目录换成我们自定义的目录文件夹。可通过以下方式来实现
commond+f
搜索htdocs
,搜到如下结果:# DocumentRoot: The directory out of which you will serve your # documents. By default, all requests are taken from this directory, but # symbolic links and aliases may be used to point to other locations. # DocumentRoot "/Applications/XAMPP/xamppfiles/htdocs" <Directory "/Applications/XAMPP/xamppfiles/htdocs">
在Mac中有些文件夹是只对本机用户有读写权限,如果是服务器去访问这样的文件夹的话会显示forbidden。例如:在安装WordPress时无法写入配置文件 wp-config.php 等权限问题。解决方法如下:
commond + f
搜索User/Group
,搜到如下结果# User/Group: The name (or #number) of the user/group to run httpd as. # It is usually good practice to create a dedicated user and group for # running httpd, as with most system services. # User daemon Group daemon
修改User
为你的用户名。以此来获取读写权限