thinkphp5 下 的Nginx 伪静态

Posted 弃身锋刃端!

tags:

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


server {

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

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;
}
}






















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

Nginx 重定向 伪静态 rewrite index.php

Nginx下伪静态规则

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

如何配置thinkphp的伪静态重写

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

Nginx伪静态处理,高手进来,帮我处理下。