Cut Of Default Controller And Index From Request

With these URL rules:


'index' => 'site/index',

'<c:[\w\-]+>' => '<c>/index',

and upon making a request like this:


example.com/index

example.com/site

example.com/site/index

I get to homepage. All is well, however I would like to get rid of them and with each of those requests get to example.com.

I have already extended CUrlManager to make controller/action with "-" possible, but this thing still eludes me.

Any ideas?