3

对于我的 opencart 站点,我使用 vQmod show_all_product.xml以便路径/index.php?route=product/category&path=0在类别页面上显示我的所有产品。它工作得很好,但理想情况下我想做的是使用 SEO 友好的 URL 来实现这一点,例如/viewall会给出相同的页面。

如果有人能指出我正确的方向,我将不胜感激。

4

1 回答 1

4

首先,确保mod_rewrite已启用。
然后,还要确保您可以使用htaccess(Apache config -> AllowOverride All)。

将此代码放在您的 htaccess 中(假设它在根文件夹中,就像您的index.php文件一样)

RewriteEngine On
RewriteRule ^viewall$ /index.php?route=product/category&path=0 [L]
于 2014-08-26T15:43:06.330 回答