CakePHP友好的seo网址
作者:互联网
我想让我的网址友好. www.example.com/posts/view/1更改为www.example.pl/:slug-:id.一切正常,但可能我在路由方面做错了,因为在点击paginator中的url后,url是正确的,它看起来像www.example.pl/:slug-:id,但是它出现了错误
“在此服务器上找不到请求的地址’www.example.pl/:slug-:id’.”
我不知道出了什么问题.这是我的代码:
Router::connect(
'/:slug-:id',
array(
'controller' => 'posts',
'action' => 'view'
),
array(
'pass' => array('slug' , 'id'),
'id' => '[0-9]+'
)
);
在paginator视图中:
echo $this->Html->link($ad['Post']['title'], array(
'controller' => 'posts',
'action' => 'view',
'slug' => Inflector::slug($post['Post']['title'],'-'),
'id'=>$post['Post']['id'])
);
我解决了这个问题.
解决方法:
它太简单了我会给你一个我项目的例子..
在您的routes.php中
Router::connect(
'/:slug-:id',
array('controller'=>'posts','action'=>'view'),
array('pass'=>array('slug','id'),'slug'=>'[a-zA-Z0-9 -]+','id'=>'[0-9]+')
);
您在视图中的链接应该是这样的.
$this->Html->link(__('link desu'),array('controller'=>'posts','action'=>'view','id'=>$post['Post']['id'],'slug'=>$post['Post']['slug']));
和你的PostsController.php
public function view($slug,$id){
$this->Post->id = $id;
// ....
}
快速提示:尝试在PostModel中创建一个数组,以避免每次在视图中创建它.
例如:
post.php中
class Post extends AppModel{
// ....
public function afterFind($results,$primary = false){
foreach ($results as $key => $value) {
if(isset($value[$this->alias]['id'])){
$results[$key][$this->alias]['url'] = array(
'controller'=>'posts',
'action'=>'view',
'id'=>$results[$key][$this->alias]['id'],
'slug'=>$results[$key][$this->alias]['slug']
);
}
// ....
}
return $results;
}
}
}
所以你可以像你那样在你的视图中调用它
$this->Html->link(__('link desu'),$post['Post']['url']);
标签:php,url-routing,cakephp,friendly-url 来源: https://codeday.me/bug/20190529/1175571.html