美文网首页
MAC OS X上更改XAMPP的根目录

MAC OS X上更改XAMPP的根目录

作者: 幻想无极 | 来源:发表于2017-07-05 12:23 被阅读434次

    XAMPP集成了PHP开发环境所需要的Apache和Mysql等基础组件。但是系统自带的根目录为/Applications/XAMPP/htdocs。有时候我们希望把网站根目录换成我们自定义的目录文件夹。可通过以下方式来实现

    • 1 打开 应用程序->XAMPP->xamppfiles->etc->httpd.conf 文档
    • 2 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">
    
    • 3 修改DocumentRoot和Directory中的路径为你想要的路径,两个的路径要一样

    在Mac中有些文件夹是只对本机用户有读写权限,如果是服务器去访问这样的文件夹的话会显示forbid。解决方法如下:

    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为你的用户名。以此来获取读写权限

    相关文章

      网友评论

          本文标题:MAC OS X上更改XAMPP的根目录

          本文链接:https://www.haomeiwen.com/subject/utfqhxtx.html