Nginx 下Thinkphp5伪静态

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx 下Thinkphp5伪静态相关的知识,希望对你有一定的参考价值。

server {
listen 80;
server_name all.bjed.com;
root "F:wwwasdata";
location / {
index index.html index.htm index.php;
#autoindex on;
    if (!-e $request_filename) {
        rewrite  ^(.*)$  /index.php?s=/$1  last;
        break;
    }
  }






以上是关于Nginx 下Thinkphp5伪静态的主要内容,如果未能解决你的问题,请参考以下文章

thinkPHP5配置nginx环境无法打开(require(): open_basedir restriction in effect. File(/mnt/hgfs/root/tp5/thinkp

Nginx 重定向 伪静态 rewrite index.php

Nginx下伪静态规则

记thinkphp5在Nginx环境下多入口 隐藏入口文件后缀

如何配置thinkphp的伪静态重写

thinkphp5 伪静态后出现No input file specified.问题