nginx thinkphp 配置pathinfo
Posted 无限REIZ
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx thinkphp 配置pathinfo相关的知识,希望对你有一定的参考价值。
location / {
root 项目名称;
index index.html index.php;
try_files $uri $uri/ =404;
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; #重点
}
root 项目名称;
index index.html index.php;
try_files $uri $uri/ =404;
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; #重点
}
以上是关于nginx thinkphp 配置pathinfo的主要内容,如果未能解决你的问题,请参考以下文章
thinkphp5 nginx配置 安全pathinfo版本
thinkphp5 nginx配置 安全pathinfo版本
nginx 配置https(可支持thinkphp的pathinfo模式)
CentOS7 nginx简单配置pathinfo模式(ThinkPHP)