Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对于我的 opencart 站点,我使用 vQmod show_all_product.xml以便路径/index.php?route=product/category&path=0在类别页面上显示我的所有产品。它工作得很好,但理想情况下我想做的是使用 SEO 友好的 URL 来实现这一点,例如/viewall会给出相同的页面。
/index.php?route=product/category&path=0
/viewall
如果有人能指出我正确的方向,我将不胜感激。
首先,确保mod_rewrite已启用。 然后,还要确保您可以使用htaccess(Apache config -> AllowOverride All)。
htaccess
AllowOverride All
将此代码放在您的 htaccess 中(假设它在根文件夹中,就像您的index.php文件一样)
index.php
RewriteEngine On RewriteRule ^viewall$ /index.php?route=product/category&path=0 [L]