加载中

XP面板去掉thinkPHP项目index.php前缀

运行nginx后创建网站,修改伪静态配置:

image

输入配置(nginx)

location / {
  if (!-e $request_filename){ 
    rewrite  ^(.*)$  /index.php?s=$1  last;
    break;
  }
}
posted @ 2022-01-14 10:58  jialeYang  阅读(56)  评论(0编辑  收藏  举报