Static Pages in Yii Problem


'urlManager'=>array(

	'urlFormat'=>'path',

	'rules'=>array(

		'<view>' => array('site/page/view/'),

		'<controller:\w+>/<id:\d+>'=>'<controller>/view',

		'<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>',

		'<controller:\w+>/<action:\w+>'=>'<controller>/<action>',

		//'index' => array('site/index'),

	),

),



I currently have that in my main.php file.

The problem I have is that when I view /index I have shown the index page in the pages folder but when I get to /about I still get the index.php file in the pages folder.


'urlManager'=>array(

    'urlFormat'=>'path',

    'rules'=>array(

        '<controller:\w+>/<id:\d+>'=>'<controller>/view',

        '<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>',

        '<controller:\w+>/<action:\w+>'=>'<controller>/<action>',

        //'index' => array('site/index'),

        '<view>' => array('site/page/view/'),

    ),

),

Should have been like this: