Thinkphp 路径中去除index.php

2017-12-28  本文已影响18人  ykissbobo
  1. URL模式 配置成-->REWRITE模式
    'URL_MODEL' => 2,
    'URL_CASE_INSENSITIVE' => true,//不区分大小写

2.参考链接http://document.thinkphp.cn/manual_3_2.html#url_rewrite

Nginx环境

 location / { // …..省略部分代码
   if (!-e $request_filename) {
   rewrite  ^(.*)$  /index.php?s=$1  last;
   break;
    }
}
上一篇 下一篇

猜你喜欢

热点阅读