Yii 1.1 URL两个笔记 同时支持PATH于GET路由和隐藏index.php

同时支持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, 

你可能感兴趣的:(index)