ThinkPHP的URL重写问题
程序员文章站
2023-08-17 11:05:53
我想要的结果无非是去掉url路径中的index.php
首先是配置.htaccess
rewri...
我想要的结果无非是去掉url路径中的index.php
首先是配置.htaccess
<ifmodule mod_rewrite.c> rewriteengine on rewritecond %{request_filename} !-d rewritecond %{request_filename} !-f rewriterule ^(.*)$ index.php/$1 [qsa,pt,l] </ifmodule>
因为我部署在apache上面,需要httpd.conf配置文件中找到loadmodule rewrite_module modules/mod_rewrite.so去掉前面的#,找到allowoverride none改为allowoverride all。
现在访问localhost/product有效,但是__app__或者__url__或者u获取出来的路径包含有index.php,也就是为localhost/index.php,原来还有一步,需要在conf/config.php里面修改或者添加'url_model'=>2,
而因为我尝试部署的是基于thinkphp的conist企业版2.0,在config.php里竟然有这么一个配置'url_model' =>c('token.false_static'),,而token.false_static的值在初始化的时候被设置为了1,所以。。。模式一直还是1,pathinfo模式。
在新浪sae部署,不支持.htaccess,只支持其自有的配置文件config.yaml,所以要在config.yaml添加下面这段重写格式代码:
handle: - rewrite: if(!is_dir() && !is_file() && path~"^(.*)$") goto "index.php/$1"
上一篇: 手把手教你使用Python创建微信机器人
下一篇: ES6小技巧之代替lodash
推荐阅读
-
浅析ThinkPHP中的pathinfo模式和URL重写
-
解析AngularJS中get请求URL出现的跨域问题
-
asp.net 2.0 中的URL重写以及urlMappings问题
-
Url相对路径的问题总结
-
浅谈ThinkPHP的URL重写
-
ThinkPHP中url隐藏入口文件后接收alipay传值的方法
-
nginx url自动加斜杠及301重定向的问题
-
thinkphp的URL路由规则与配置实例
-
使用nginx代理gogs遇到推送代码错误的问题(RPC failed; HTTP 413 curl 22 The requested URL returned error: 413)
-
解决nginx不支持thinkphp中pathinfo的问题