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
redirect to
which gives
CException
Please help me out.
Thanks in advance.
Parwez