假设我想将http://example.com/topic/view/topicname/thenameofthetopic
direclty显示为http://example.com/thenameofthetopic
所以当我输入http:// example.com/thenameofthetopic
时,我已经实现了它,它会正确地重定向到控制器/操作,并且网站显示我想要显示的内容,问题是当然,URL已更改,我想要它保持格式http://example.com/thenameofthetopic
是否可以通过触摸htaccess文件?只需使用yii配置它
我该怎么做?
答案 0 :(得分:2)
你的确是这样:
'components' => array(
'urlManager' => array(
'urlFormat' => 'path',
'showScriptName' => false,
'rules' => array(
"<name_of_topic:\w+>/" => 'controller/action'
),
),
)
您将在Yii :: app() - &gt; request-&gt; getQuery('name_of_topic');
中获取主题名称htaccess 是Yii - 经典,必须存在:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [L,QSA]
我建议你做另一种方式。
'components' => array(
'urlManager' => array(
'urlFormat' => 'path',
'showScriptName' => false,
'rules' => array(
"t/<name_of_topic:\w+>/" => 'controller/action'
),
),
)
因此主题链接为http://www.example.com/t/name_of_topic。 这将允许您使用“a //”作为文章等。
还有一件事。阅读这篇文章,找到很多有趣的事情http://www.yiiframework.com/doc/guide/1.1/en/topics.url