Thinkphp --- 去掉index.php
Posted 帅到要去报警
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Thinkphp --- 去掉index.php相关的知识,希望对你有一定的参考价值。
这里我使用的面板是宝塔,操作的 apche:
具体的配置可以参考这里:
https://www.cnblogs.com/fangziffff123/p/7588782.html
首先是:Thinkphp的配置:Common/Conf的配置:
/* 配置伪静态路由 */ \'URL_MODEL\'=>\'2\', \'URL_ROUTER_ON\' =>true,
接下来就是服务器上,对具体网站的 .htaccess 的配置:
<IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L] </IfModule>
然后访问:
http://text.think.com/Home/Index/show
就成功了。
以上是关于Thinkphp --- 去掉index.php的主要内容,如果未能解决你的问题,请参考以下文章