我要重寫我的網址YII使URL搜索引擎友好的。 在我當前系統的網址是 http://mysite/recipe/recipedetail/1
Yii的URL重寫
,我想使它像
http://mysite/recipename
我怎麼能做到這一點
我試圖催產素的使用規則,但他們沒有工作我的規則在配置/主文件
'url.rules' => array(
'recipe/<recipename:([A-Za-z0-9-]+)>/' => 'recipe/recipedetail/<recipename:\w+>/',
),