-1

我有一个像http://demo.examplesite.com/videos/9#part-1这样的网址

我如何将其更改为http://demo.examplesite.com/videos

请为此提供解决方案

4

1 回答 1

0

要更改 url 结构,您必须在 /protected/config/main.php 中编辑 url 管理器。以下是 url 管理器的示例(这些设置已更改)。

'urlManager'=>array(
  'urlFormat'=>'path',
  'showScriptName' => false, 
  'rules'=>array(
     // custom rules go first
     'product/<slug:[a-zA-Z0-9-]+>/'=>'product/view',
     // default controller url setup
     '<controller:w+>/<id:d+>'=>'<controller>/view',
     '<controller:w+>/<action:w+>/<id:d+>'=>'<controller>/<action>',
     '<controller:w+>/<action:w+>'=>'<controller>/<action>',
     // defaults to a site page if not above
     '<view:[a-zA-Z0-9-]+>/'=>'site/page',
   ),
 ),

您需要首先了解如何使用 url 管理器,以便根据您的需要制作它们。正如@jurik 在评论中提到的那样,9 可能与视频有关,因此这个网址已经非常友好了。

上面的代码取自本指南。我建议您阅读此内容以取得进步。

http://www.joshuawinn.com/yii-clean-seo-friendly-urls-for-pages/

于 2014-04-23T10:06:26.510 回答