thinkphp 如何实现url的rewrite

Nginx.conf中配置

location / { // …..省略部分代码

   if (!-e $request_filename) {

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

   break;

    }

 }

posted @ 2019-03-15 14:02  钱哥的博客  阅读(291)  评论(0编辑  收藏  举报