同时支持PATH于GET格式路由(修改框架文件 简直坑)
framework/web/CUrlManager.php
parseUrl方法
第一行判断修改成
if($this->getUrlFormat()===self::PATH_FORMAT && !isset($_GET[$this->routeVar]) && !isset($_POST[$this->routeVar]))
隐藏index.php
protected/config/main.php,中
'urlManager'=>array(
'urlFormat'=>'path',
'showScriptName'=>false,