Url Redirecting

Hi,

I am new on yii. can any buddy help me with URL redirecting. I want to redirect non www URL to www URL, for this I am using .htaccess

Code is

RewriteEngine on

if a directory or a file exists, use it directly

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

otherwise forward it to index.php

RewriteRule . index.php

RewriteCond !^www\.

RewriteRule ^(.*)$ {HTTP_HOST} [R=301,L]

But If I should enter any specific URL without www (eg. mydomain.com/property/search) I will now be taken back to the homepage every time regardless of what page I enter.

and if I use this code

otherwise forward it to index.php

RewriteRule . index.php

RewriteCond %{HTTP_HOST} !^www\.

RewriteRule ^(.*)$ {HTTP_HOST}/1$ [R=301,L]

then below URL

mydomain.com/xyz/search

redirect to

mydomain.com/index.php/search

which gives

CException

Please help me out.

Thanks in advance.

Parwez

Moved from Bug Discussions to General Discussion for Yii 1.1.x.