Thinkphp框架的网站lnmp无法页面跳转配置

发布时间:2020-05-31 14:27:09 作者:一招拜师
来源:网络 阅读:383

  nginx配置文件修改如下:

 

server {

  listen       80;

  server_name  debian;

  root /usr/share/nginx/html;

  index  index.php;

  location ~ ^/(api)\.php$ {

    deny all;

  }

  location / {

    if (!-e $request_filename){

      rewrite ^/(.*)$ /index.php/$1 last;

    }

  }

  location ~ \.php($|/){

    set $script     $uri;

    set $path_info  "";

    if ($uri ~ "^(.+?\.php)(/.+)$") {

      set $script     $1;

      set $path_info  $2;

    }

    fastcgi_pass   unix:/run/php/php7.0-fpm.sock;

    fastcgi_index  index.php;

    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

    fastcgi_param  PATH_INFO          $path_info;

    include        fastcgi_params;

  }

  location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ {

    expires      1d;

  }

  location ~ .*\.(js|css)?$ {

    expires      12h;

  }

  }


推荐阅读:
  1. docker如何快速搭建lnmp网站架构
  2. 配置Lnmp+redis

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

server 配置文件 listen

上一篇:PHP弹出提示框并跳转到新页面即重定向到新页面

下一篇:GIF、SVG、PNG、图片格式转换

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》