yii隐藏index.php文件的步骤
作者:zccst
1.修改apache的配置httpd.conf
(1)开启apache的mod_rewrite模块去掉loadmodule rewrite_module modules/mod_rewrite.so前的“#”符号
(2)确保中有“allowoverride all”
批注:对于wamp而言,第二个allowoverride all已经开启。
allowoverride在apache的配置文件出现三次,但是只有一个地方需要 all,其他两个地方都是none。
(3)重启apache
2.在项目中的/protected/config/main.php中添加代码:
'components'=>array( ... 'urlmanager'=>array( 'urlformat'=>'path', 'showscriptname'=>false,//注意false不要用引号括上 'urlsuffix'=>'.html',//搭车加上.html后缀,霸道 'rules'=>array( 'sites'=>'site/index', ), ), ... ),
3.在与index.php文件同级目录下添加文件“.htaccess”,内容如下:
options +followsymlinks indexignore */* rewriteengine on # if a directory or a file exists, use it directly rewritecond %{request_filename} !-f rewritecond %{request_filename} !-d # otherwise forward it to index.php rewriterule . index.php
批注:这段在yii的官方指南中也有:
详见:http://www.yiiframework.com/doc/guide/1.1/zh_cn/topics.url
这样就可以实现隐藏index.php入口文件了。