Yii隱藏URL中index.php的方法

字號(hào):


    本文實(shí)例講述了Yii隱藏URL中index.php的方法。分享給大家供大家參考,具體如下:
    一、修改config/下的main.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>',
          ),
    ),
    二、修改網(wǎng)站根目錄下.htaccess文件內(nèi)容如下:
    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
    希望本文所述對(duì)大家基于Yii框架的PHP程序設(shè)計(jì)有所幫助。