对于我的opencart网站,我使用了vQmod show_all_product.xml,以便路径/index.php?route=product/category&path=0
在类别页面上显示我的所有产品。它完美地运作,但理想情况下我想要做的是使用SEO友好的URL来实现这一点,例如: /viewall
将提供相同的页面。
如果有人能指出我正确的方向,我将非常感激。
答案 0 :(得分:4)
首先,确保启用 mod_rewrite
然后,还要确保您可以使用htaccess
(Apache config - > AllowOverride All
)。
将此代码放入htaccess(假设它位于根文件夹中,就像您的index.php
文件一样)
RewriteEngine On
RewriteRule ^viewall$ /index.php?route=product/category&path=0 [L]