码迷,mamicode.com
首页 > Web开发 > 详细

thinkphp url路由中去除index.php

时间:2014-11-04 22:39:44      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:blog   http   文件   on   log   html   ad   htm   tt   

第一步:打开Apache中的配置文件:httped.conf,将mod.rewrite.so这条注释去除。

第二步:将AllowOverride Node修改为AllowOverride All

第三步:在文件根目录中创建.htaccess

    在文件中写入

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>

第四步:在配置文件中配置

    ‘URL_MODEL‘ => 2,

设置为重写模式

第五步:重写Apache

127.0.0.1/Blog/index.php/Admin/Login/index.html

可以这样访问:

127.0.0.1/Blog/Admin/Login/index.html

thinkphp url路由中去除index.php

标签:blog   http   文件   on   log   html   ad   htm   tt   

原文地址:http://www.cnblogs.com/zafuacm/p/4074775.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!