首页 > Web开发 > 详细

phpstudy 新项目配置

时间:2021-02-27 09:41:43      阅读:40      评论:0      收藏:0      [点我收藏+]

重新导出autoload.php  

执行composer dumpautoload

使用mysql+nginx,新建网站这里的配置,多个网站可以同时使用80端口

根路径要执行laravel的public路径

技术分享图片

技术分享图片

server {
        listen        80;
        server_name  www.kaibook.com kaibook.com;
        root   "D:/study/book/public";
        location / {
            index index.php index.html error/index.html;
            try_files $uri $uri/ /index.php?$query_string;
            include D:/study/book/public/nginx.htaccess;
            autoindex  off;
        }
        location ~ \.php(.*)$ {
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            fastcgi_param  PATH_INFO  $fastcgi_path_info;
            fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;
            include        fastcgi_params;
        }
}

 

phpstudy 新项目配置

原文:https://www.cnblogs.com/as3lib/p/14454707.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!