码迷,mamicode.com
首页 > Web开发 > 详细

thinkphp的使用——隐藏index.php

时间:2018-07-26 18:26:12      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:engine   path_info   multi   filename   分代   nginx   location   tee   iter   

官方默认的。htaccess文件

<IfModule mod_rewrite.c>
  Options +FollowSymlinks -Multiviews
  RewriteEngine On
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>

如果用的是phpstudy

<IfModule mod_rewrite.c>
  Options +FollowSymlinks -Multiviews
  RewriteEngine On
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
</IfModule>

Nginx环境,可以在Nginx.conf

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

  if!(!-e $request_filename){

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

  break;

  }

}

 

thinkphp的使用——隐藏index.php

标签:engine   path_info   multi   filename   分代   nginx   location   tee   iter   

原文地址:https://www.cnblogs.com/yang1com/p/9372823.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!