浅谈ThinkPHP的URL重写
程序员文章站
2022-06-20 09:38:36
我想要的结果无非是去掉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>
handle:
- rewrite: if(!is_dir() && !is_file() && path~"^(.*)$") goto "index.php/$1"
我想要的结果无非是去掉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"
是不是超级简单呢,如果还想深入的学习其他伪静态方面的知识,请好好研读下下面的文章推荐吧。
推荐阅读
-
thinkphp的URL路由规则与配置实例
-
针对thinkPHP5框架存储过程bug重写的存储过程扩展类完整实例
-
IIS下配置页面重写(配合插件url-rewrite2去除页面后缀名)的实现方法
-
ThinkPHP的URL重写问题
-
浅谈thinkphp的实例化模型
-
thinkphp5 部署到iis服务器url重写
-
asp.net下实现URL重写技术的代码
-
asp.net下用url重写URLReWriter实现任意二级域名的方法第1/2页
-
ThinkPHP 3.2,配置 'URL_MODEL'=>2。 APP_DEBUG设为false,U函数生成的URL的index.php不能去掉,只有将APP_DEBUG改成true,才能去掉index.php,求解~~
-
让Nginx支持ThinkPHP的URL重写和PATHINFO的方法分享