thinkphp的使用——隱藏index.php
阿新 • • 發佈:2018-07-26
文件 thinkphp tee ces module index.php path_info rul writer
官方默認的。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