B2B2C商城
开发手册
开发教程
API接口
下单流程接口
用户中心接口
使用手册
统计管理
商品管理
模板管理
新手入门
多商家首页布局规则
第三方账号注册流程
商家中心
店铺管理
商品管理
账号管理
常见问题
其他
公众号接入
系统安装
支付相关
名片小程序
隐藏index.php(window-apache)
有些朋友提到关于TPshop 在window的apache下隐藏index.php 一问题, 可以修改 Application\Common\Conf\config.php 文件代码
1 2 3 4 5 6 | 'common' , 'AUTH_CODE' => "TPSHOP" , //安装完毕之后不要改变,否则所有密码都会出错 //'URL_CASE_INSENSITIVE' => false, //URL大小写不敏感 'LOAD_EXT_CONFIG' => 'db,route' , // 加载数据库配置文件 'LOAD_EXT_CONFIG' => 'db' , // 加载数据库配置文件 'URL_MODEL' =>2, // 如果需要 隐藏 index.php 打开这行"URL_MODEL"注释 同时在apache环境下 开启 伪静态模块, 如果在nginx 下需要另外配置,参考thinkphp官网手册 |
有些环境刚修改上面还是不行,需要另外修改根目录下的 .htaccess 文件
1 2 3 4 5 6 7 | Options +FollowSymlinks RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f #RewriteRule ^(.*)$ index.php/ $1 [QSA,PT,L] RewriteRule ^(.*)$ index.php?s= $1 [QSA,PT,L] |
原来的
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
改成
RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L]
重启apache 试试。
对于nginx 用户 请查看thinkphp 官网手册说明