thinkphp框架url中隐藏index.php

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp框架url中隐藏index.php相关的知识,希望对你有一定的参考价值。

1、httpd.conf配置文件中加载了mod_rewrite.so模块 //在APACHE里面去配置 
#LoadModule rewrite_module modules/mod_rewr
ite.so把前面的警号去掉 

技术分享













2、在apache配置文件httpd.conf中,将里面的AllowOverride None都改为AllowOverride All

技术分享

进行1和2之后,一定要重启apache服务

3、.htaccess文件必须放到根目录下

(windows里面创建.htaccess,新建任何一个文件,打开,另存为文件类型选择所有,即可创建)

这个里面应该有

RewriteEngine on 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteRule ^(.*)$ index.php/$1 [L] 

技术分享

4、保证开启URL重写模式

技术分享

本文出自 “12382281” 博客,请务必保留此出处http://12392281.blog.51cto.com/12382281/1880899

以上是关于thinkphp框架url中隐藏index.php的主要内容,如果未能解决你的问题,请参考以下文章

ThinkPHP 利用.htaccess文件的 Rewrite 规则隐藏URL中的 index.php

thinkphp5 Apache / IIs环境下 URL重写

ThinkPHP 隐藏URL中的 index.php

ThinkPHP 下如何隐藏index.php

ThinkPHP 利用.htaccess文件的 Rewrite 规则隐藏URL中的 index.php

thinkphp中redirect重定向后隐藏index.php