nginx 配置支持 TP框架

没错 只需一句话 一切搞定 nginx 配置文件 添加这条代码即可

location / {
  rewrite ^(.*)$ /index.php?s=$1 last;
}

 或

try_files $uri $uri/ /index.php?$query_string;

  

既不回头,何必不忘; 既然无缘,何须誓言; 今日种种,逝水无痕; 明夕何夕,君已陌路;
原文地址:https://www.cnblogs.com/zyjfire/p/8945629.html