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

yii 隐藏index.php

时间:2014-12-28 18:08:25      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

    首先,开启apache的rewrite模块

    去掉rewrite前的#,如下所示

    LoadModule rewrite_module modules/mod_rewrite.so

 

    接着,在yii的index.php同级目录建立.htaccess文件,内容如下

    <IfModule mod_rewrite.c>   
    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  
    </IfModule>

 

    最后,在yii的配置文件mail.php 中添加

      ‘urlManager‘=>array(
       ‘urlFormat‘=>‘path‘,
       ‘showScriptName‘=>false,
       ‘rules‘=>array(
      ‘<controller:\w+>/<id:\d+>‘=>‘<controller>/view‘,
      ‘<controller:\w+>/<action:\w+>/<id:\d+>‘=>‘<controller>/<action>‘,
      ‘<controller:\w+>/<action:\w+>‘=>‘<controller>/<action>‘,
     ),
  ),

  

   这样就隐藏了index.php

   

yii 隐藏index.php

标签:

原文地址:http://www.cnblogs.com/xshang/p/4190204.html

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