I have url like this:
www.studyenglish/index.php?r=site/lesson&act=read&id=1
I would like change to be:
www.studyenglish/site/lesson/read
I have added this script in url manager config/main.php
'urlManager'=>array(
....
'showScriptName'=>false,
....
),
and add this script in .htaccess
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
# 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
But it only work in url like this:
www.studyenglish/index.php?r=site/lesson
to be:
www.studyenglish/site/lesson
So, how to change this url
www.studyenglish/index.php?r=site/lesson&act=read&id=1
to be
www.studyenglish/site/lesson/read
Hopefully someone can help. Thanks ...