标签: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
标签:blog http 文件 on log html ad htm tt
原文地址:http://www.cnblogs.com/zafuacm/p/4074775.html