当启用SEO时,分页不在opencart中工作

时间:2013-11-19 10:45:48

标签: php pagination seo opencart

您好我在我的一个网站上使用Opencart,但我已经意识到当我打开SEO关键字时,分页不起作用。当SEO关闭时它工作正常。

有没有人知道为什么会这样。

我试图在opencart论坛上找到答案,但没有运气,而且我在堆栈溢出时也找不到任何东西......

这是我的htaccess文件的代码。

Options +FollowSymlinks
# Prevent Directoy listing Options -Indexes
# Prevent Direct Access to files
<FilesMatch "\.(tpl|ini|log)">
     Order deny,allow
 Deny from all
</FilesMatch>
# SEO URL Settings
RewriteEngine On
# If your opencart installation does not run on the main web folder make sure you folder it does run in ie. / becomes /shop/ 
RewriteBase /
RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]
RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]
RewriteRule ^download/(.*) /index.php?route=error/not_found [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]

这是指向其中一个页面的链接

http://pubstuff.co.za/Bar/Ashtrays

我可以在category.php页面上看到分页代码

$pagination = new Pagination();
        $pagination->total = $product_total;
        $pagination->page = $page;
        $pagination->limit = $limit;
        $pagination->text = $this->language->get('text_pagination');
        $pagination->url = $this->url->link('product/category', 'path=' . $this->request->get['path'] . $url . '&page={page}');

它试图将“链接”或网址仍称为正确项目的路径,但我不知道如何更改此项以调用新呈现的SEO友好网址的网址

有人可以帮忙。

1 个答案:

答案 0 :(得分:0)

在您提供的链接中,没有足够的产品可以导致分页。在产品数量超过25的限制之前,您不会被分页。

http://pubstuff.co.za/Gifts-and-novelties/Other-gifts就是这种情况 - 87项,但是,当我选择列表限制为25时,页面会自动重新加载100个产品限制,因此我无法确认这是错误的。正如上面的shadyyx评论这对于默认的搜索引擎优化是好的,所以也许你主题中的某些内容会导致错误。