В моем приложении есть два следующих маршрута:
Router::connect('/posts/:id',
array('controller' => 'posts', 'action' => 'view'),
array('id' => '[A-Za-z0-9\._-]+', 'pass' => array('id')));
Router::connect('/posts/:slug-:id',
array('controller' => 'posts', 'action' => 'view'),
array(
'id' => '[A-Za-z0-9\._-]+',
'slug' => '[A-Za-z0-9\._-]+',
'pass' => array('id', 'slug')
));
, и пример URL будет:
/posts/This_is_the_first_post-1
Однако будет отображаться 404но если я изменю URL -
перед идентификатором на /
, он будет работать: / Есть идеи, в чем проблема?Вызывает ли это регулярное выражение ??
Вот мой метод для представления:
function view ( $id = null, $slug = null )
{
$post = $this->Post->find('first',array('contain'=>array('User'=>'Profile'),'conditions'=>array('Post.id'=>$id)));
if (!$post)
{
throw new NotFoundException('404');
}
else if($post['Post']['status'] == '0') // 0=draft 1=closed 2=open
{
if($post['Post']['user_id'] == $this->Auth->user('id'))
{
$this->Session->setFlash('Your post has NOT been published yet');
}
else
{
throw new NotFoundException('404');
}
}
if (Inflector::slug($post['Post']['title']) != $slug || $slug = null)
{
$this->redirect(array('id'=>$post['Post']['id'],'slug'=>Inflector::slug($post['Post']['title'])));
}
$this->set(compact('post'));
}