marvix
1
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
redguy
(Maciej Lizewski)
2
you must use regexp style:
'content/(.*)'=>'article/content/'
marvix
3
tested this also , result error 404
ahmed201
(Rifajas)
4
try entering this rule before any other rules because I also face like the same .peoblem.
marvix
5
Yes, Thanks its working fine now …