【发布时间】:2018-06-17 04:48:10
【问题描述】:
我是 cakephp 新手。我正在尝试重写 url 以使其对 SEO 友好。
我在 cakephp3 中为 cms 页面创建了模块。
Page Table - url 字段想用作“about-us”
CREATE TABLE IF NOT EXISTS `pages` (
`id` int(11) NOT NULL,
`title` varchar(100) NOT NULL,
`detail` text NOT NULL,
`url` varchar(225) NOT NULL,
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=latin1;
当前 URL(工作)- https://example.com/pages/view/8
我想像下面这样。 https://example.com/about-us
请提出建议。
【问题讨论】:
标签: php cakephp-3.0 cakephp-3.1