美文网首页
Mac测试nginx+php-fpm

Mac测试nginx+php-fpm

作者: Mr__Professor | 来源:发表于2016-08-05 18:24 被阅读74次

    1、配置php.ini

    结尾部分增加以下配置项

    cgi.fix_pathinfo = 1

    2、配置nginx.conf,修改默认目录以及监听端口

    listen 80;

    server_name localhost;

    location / {

    root /cores;

    indexi ndex.php index.html index.htm;

    }

    3、重启nginx进行测试

    4、测试结果

    相关文章

      网友评论

          本文标题:Mac测试nginx+php-fpm

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