thinkphp 如何去掉index.php
1.打开apache配置文件:
#LoadModule rewrite_module modules/mod_rewrite.so把前面的警号去掉
AllowOverride None 把None改为 All //在APACHE里面去配置 (注意其他地方的AllowOverride也统统设置为ALL)
2、将以下代码另存为名称为.htaccess的文件保存在index.php入口文件平级目录下
RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php/ $1 [QSA,PT,L] //开源软件:phpfensi.com3、在tp配置文件中开启URL重写模式
'URL_MODEL'=>'2',
4、重启apache
查看更多关于thinkphp 如何去掉index.php - Thinkphp的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://haodehen.cn/did6324