yii でカスタムの動的な seo フレンドリー URL を使用したいと考えています。
私はあらゆる種類の記事を読みましたが、それらはすべて同じことを言っています。
これは私がこれまでに見つけたものであり、私のニーズには合いません:
'urlManager'=>array(
'urlFormat'=>'path',
'rules'=>array(
'<controller:\w+>/<id:\d+>'=>'<controller>/view',
'<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>',
'<controller:\w+>/<action:\w+>'=>'<controller>/<action>',
また
array(
'<_c:(post|comment)>/<id:\d+>/<_a:(create|update|delete)>'=>'<_c>/<_a>',
'<_c:(post|comment)>/<id:\d+>'=>'<_c>/view',
'<_c:(post|comment)>s/*'=>'<_c>/list',
)
次のような URL は必要ありません: domain.com/a/b/c/d
必要: domain.com/here-goes-the-article-title-ACTION-ID
記事のタイトルを特定できる表現が必要です。
これは、私の URL の 1 つがどのように見えるかです: http://www.linkbook.ro/concurs-castiga-o-invitatie-de-trei-zile-de-festival-la-bestfest-2012-detailsU-2-882。 html
concurs-castiga-o-invitatie-de-trei-zile-de-festival-la-bestfest-2012 が記事のタイトルです
detailsU はアクションです
2 はデータベース ID です
882は記事IDです