Google Friendly Url

Hello everyone!

I need my url (www.mysite.com/site/introduction) to be google-friendly like this www.mysite.com/gioi-thieu. So when you go to www.mysite.com/gioi-thieu the browser will go to www.mysite.com/site/introduction.

I’m new to yii and need some help!

Any suggestion would be appreciated.

Cheers.

Hi go to config/main.php and add this in urlManager array




'urlManager'=>array(

		...

		'rules'=>array(

                ...

                'gioi-thieu' => 'site/introduction',

                ...

                ),

                ...

)



Thanks man. It works.

oh good.

can you explain it more?

TNX.