nginx 隐藏index.php 最有效的方法

location / {
 if (!-e $request_filename) {
                         rewrite  ^(.*)$ /index.php?s=$1  last;
                         break;
  }
}

这个文字直接加到nginx.htaccess 文件中 或者放到nginx.conf 文件中

posted on 2024-08-17 10:31  kevin_yang123  阅读(47)  评论(0编辑  收藏  举报