php1

作者: 疾风追马 | 来源:发表于2018-05-29 23:27 被阅读7次

    mac开启虚拟主机

    cd /etc/apache2
    sudo vim httpd.conf
    去掉LoadModule vhost_alias_module modules/mod_vhost_alias.so前面的#号
    去掉Include conf/extra/httpd-vhosts.conf前面的#号
    
    然后打开extra下的httpd-vhosts.conf文件,加入如下代码
    
    <VirtualHost *:80>
        #网站根目录
        DocumentRoot "/Users/xxx/php" 
        #域名
        ServerName www.test.com
        #这里配置欢迎首页面
        DirectoryIndex index.html index.htm index.php
        <Directory />
               Options Indexes FollowSymLinks
               #不允许别人修改我们的页面
               AllowOverride None
               #设置访问权限
               order allow,deny
               Allow from all
              Require all granted
        </Directory>   
    </VirtualHost>
    
    修改hosts文件 cd /private/etc/hosts
    
    最后重启Apache,sudo apachectl -k restart 。
    

    开启对MySQL支持

    去掉php_mysqli之前的分号

    相关文章

      网友评论

          本文标题:php1

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