PHP建站技术分享-从入门到精通PHP建站技术分享-从入门到精通PHP建站技术分享-从入门到精通

QQ:420220301 微信/手机:150-3210-7690
当前位置:首页 > CMS教程 > Fastadmin

分享关于使用laragon搭建fastadmin本地开发环境的伪静态配置

管理员 2024-12-14
Fastadmin
3

laragon是一个非常好用的开发环境神器,一次性帮你集成了包括但不限于

Apache, Nginx, MySQL, PHP, Redis, Memcached, Node.js, npm, yarn, git...

等各种工具,不需要自己再一个个安装和配置。并且laragon这一切都是独立环境,不影响操作系统其它文件与配置,非常方便。
laragon对于laravel的支持会更加的合适一些,在laragon环境下使用fastadmin也遇到了一些问题,其中困扰我最久的就是伪静态配置问题。终于解决,现在将配置方案分享给大家,以供参考。

server {    listen 80;        # 监听80端口    listen 443 ssl;        # 监听443端口       server_name erp.test *.erp.test;        # 配置域名    root "D:/Program/laragon/www/erp/public";    # 配置运行目录    index index.php index.html index.htm;    location / {         try_files $uri $uri/ /index.php$is_args$args;         index index.php index.html index.htm;         if (!-e $request_filename) {         rewrite ^/(.*)$ /index.php/$1 last;         }    }    location ~ ^(.+.php)(.*)$ {    fastcgi_pass php_upstream;        fastcgi_split_path_info ^(.+.php)(.*)$;        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;        fastcgi_param PATH_INFO $fastcgi_path_info;        include fastcgi_params;    }    location ~ /.ht {        deny all;    }    # 日志配置,地址改成自己的就行,也可以用相对路径    error_log "D:/Program/laragon/log/erp.log";    access_log "D:/Program/laragon/log/erp.log";}

如还需要配置跨域的话,可以自行继续添加。


希望以上内容对你有所帮助!如果还有其他问题,请随时提问。 各类知识收集 拥有多年CMS企业建站经验,对 iCMS, Fastadmin, ClassCMS, LeCMS, PbootCMS, PHPCMS, 易优CMS, YzmCMS, 讯睿CMS, 极致CMS, Wordpress, HkCMS, YznCMS, WellCMS, ThinkCMF, 等各类cms的相互转化,程序开发,网站制作,bug修复,程序杀毒,插件定制都可以提供最佳解决方案。

相关推荐

扫码关注

qrcode

QQ交谈

回顶部