Clean URLs for sub pages?

As my name suggests, I am a total Noob.

I turned on clean URLs in main.php in the the config folder. And it works for localhost/yiitest1/index.php/gii

but does not work on: localhost/yiitest1/index.php/site/page?view=about

Rather, maybe I dont know the the clean URL for that page? What is it?

Hi,

Can you paste the error message?

Try adding this rule in the url manager:




'urlManager'=>array(

	'urlFormat'=>'path',

        'showScriptName'=>false,

        'rules'=>array(

                '<view>' => 'site/page',

        )

)