ThinkPHP去掉URL中的index.php
Posted hrbust_09zhangyabin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ThinkPHP去掉URL中的index.php相关的知识,希望对你有一定的参考价值。
1,先确认你有没mod_rewrite.so模块
/usr/lib/apache2/modules/mod_rewrite.so
然后在httpd.conf最后一行加上(我不加也行,自己都奇怪)
LoadModule rewrite_module modules/mod_rewrite.so
重启
/etc/init.d/apache2 restart
2,将/etc/apache2/sites-enabled/000-default中的
AllowOverride None 将None改为 All
3,将TP的conf配置文件里写 ‘URL_MODEL‘ => ‘2‘(开启REWRITE模式)
4,.htaccess文件必须放到项目根目录下,在文件里面添加
<IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] </IfModule>
最后重启apache即可
以上是关于ThinkPHP去掉URL中的index.php的主要内容,如果未能解决你的问题,请参考以下文章
ThinkPHP 利用.htaccess文件的 Rewrite 规则隐藏URL中的 index.php