Yii暗藏index.php文件的步骤
程序员文章站
2024-01-04 18:14:09
...
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中添加代码:
3.在与index.php文件同级目录下添加文件“.htaccess”,内容如下:
批注:这段在yii的官方指南中也有:
详见:http://www.yiiframework.com/doc/guide/1.1/zh_cn/topics.url
这样就可以实现隐藏index.php入口文件了。
作者:zccst
1.修改Apache的配置httpd.conf
(1)开启apache的mod_rewrite模块去掉LoadModule rewrite_module modules/mod_rewrite.so前的“#”符号
(2)确保
批注:对于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入口文件了。
相关文章
相关视频
推荐阅读
-
使用navicat导入sql文件的方法步骤
-
springboot 单文件上传的实现步骤
-
yii2.0框架实现上传excel文件后导入到数据库的方法示例
-
使用Yii框架php导入excel文件中的编码问题
-
Yii2使用自带的UploadedFile实现的文件上传_php实例
-
Yii2使用自带的UploadedFile实现的文件上传,yii2uploadedfile
-
如何创建Linux的swap交换分区文件的方法步骤
-
vue-cli 2.*中导入公共less文件的方法步骤
-
如何通过Yii框架使用魔术方法实现跨文件调用的功能
-
yii2 php namespace 引出第三方非namespace库文件时候,报错:Class not found 的解决