Url Rewrite

I set Url Rewrite,like:

‘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>',


		),


	),

and i set .htaccess like:

<IfModule rewrite_module>

Options +FollowSymLinks





IndexIgnore */*





RewriteEngine On











RewriteCond %{REQUEST_FILENAME} &#33;-f





RewriteCond %{REQUEST_FILENAME} &#33;-d





RewriteRule . index.php

</IfModule>

and i still set httpd.conf like

LoadModule rewrite_module modules/mod_rewrite.so

why it still take e mistake like:

Not Found

The requested URL /yiitest/site/contact was not found on this server.