thinkphp的使用——隐藏index.php
Posted yang1com
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp的使用——隐藏index.php相关的知识,希望对你有一定的参考价值。
官方默认的。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的主要内容,如果未能解决你的问题,请参考以下文章
thinkphp隐藏index.php/home,并允许访问其他模块