我想在cakephp中重写网址。为此,我使用了routes.php类。我使用了以下代码:
//Routes.php
Router::connect(
'/:slug-:id',
array('controller' => 'Products', 'action' => 'product_listing'),
array('pass' => array('id', 'slug'))
);
//header.php
<?php echo $this->Html->link(
$sub['category_name'],
array(
'controller' => 'Products',
'action' => 'product_listing',
'slug' => Inflector::slug($sub['category_name'],'-'),
'id' => base64_encode(convert_uuencode($sub['id']))
)
);?>
一切正常,但我的客户说不应该在网址中查看ID。请任何人帮我删除网址中的ID。