Wildcard In Url ?

Hi,

In my article controller I have action name content, I need to use direct in url such as : mysite.com/content/NODE-ID

In urlmanager rules added


'content/*'=>'article/content/'

but am getting


Unable to resolve the request "content/xsa".

Any idea is that possible ?

Thanks

you must use regexp style:


'content/(.*)'=>'article/content/'

tested this also , result error 404

try entering this rule before any other rules because I also face like the same .peoblem.

Yes, Thanks its working fine now …