我正在努力让我的seo路由工作。知道我能够建立这样的网址:
http://mydomain/Rentals
一旦我需要使用分页,我就会得到这样的网址
http://mydomain/Rentals/page:2?url=Rentals
为了避免使用url参数,我无法弄清楚我必须做些什么? 我可以以某种方式删除它吗?如果网址看起来像这样会很棒:
http://mydomain/Rentals/page:2
感谢您的帮助!
答案 0 :(得分:2)
看看你的htaccess文件。 它应该如下所示: https://github.com/cakephp/cakephp/blob/master/app/webroot/.htaccess
请注意RewriteRule ^ index.php [L]
部分。