I want Url like this:
http://shopperspace.loc/posts/45
So I changed rules in UrlManager
'posts/<id:\w+>'=>'site/posts'
Then my action in siteController is
public function actionPosts($post_id){
echo $post_id;}
It shows page not found!
I don’t know where it goes wrong!