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

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

Linux Nginx 环境下 模块不存在的错误 解决方法

管理员 2024-12-14
Fastadmin
5

开启 pathinfo 路由模式
以下是 nginx 配置
QQ图片20200407115149.png

server {    listen       80;    server_name  fastadmin.test;    root /data/www/fastadmin/public;    #charset koi8-r;    #access_log  logs/host.access.log  main;    location / {        index  index.php index.html index.htm;        if (!-e $request_filename) {           rewrite  ^(.*)$  /index.php?s=/$1  last;           #break;        }    }    #error_page  404              /404.html;    # redirect server error pages to the static page /50x.html    #    error_page   500 502 503 504  /50x.html;    location = /50x.html {        root   html;    }    # proxy the PHP scripts to Apache listening on 127.0.0.1:80    #    #location ~ .php$ {    #    proxy_pass   http://127.0.0.1;    #}    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000    #    location ~ .php {        fastcgi_pass   127.0.0.1:9000;        fastcgi_index  index.php;        #fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;        #include        fastcgi_params;        set $path_info "";        set $real_script_name $fastcgi_script_name;        if ($fastcgi_script_name ~ "^(.+?.php)(/.+)$") {            set $real_script_name $1;            set $path_info $2;        }        fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;        fastcgi_param SCRIPT_NAME $real_script_name;        fastcgi_param PATH_INFO $path_info;        include fastcgi_params;    }    # deny access to .htaccess files, if Apache's document root    # concurs with nginx's one    #    #location ~ /.ht {    #    deny  all;    #}}

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

相关推荐

扫码关注

qrcode

QQ交谈

回顶部