我的routes.php文件遇到麻烦,过去我的applcation可以正常使用这样的路线:
Router::connect( '/imprenta_online/:family/:subfamily/:id/:title/:quantity_id/:description/:days/*',
array('controller' => 'imprenta_online', 'action' => 'home'),
array('pass' => array('slug','slug', 'id','slug', 'slug', 'quantity_id', 'slug', 'slug')
));
但现在,SEO经理需要从 url 中删除控制器,我正在尝试在routes.php中执行此操作,首先,此更改适用于此URL,但使用前缀后端( backend_index,backend_edit ... )的所有路径都显示我在分页上的错误... 我对此并不“好”,所以我想知道我该怎么做???
我需要一些帮助才能知道我需要做哪些更改,所有其他路线默认使用蛋糕路线,所以我没有必要更改它们。