我的magento网站有这样的路径
https://www.test.com/manufacturer-bourgeat.html
但是当我转到那种页面时,我需要删除制造商 - 部分。像
https://www.test.com/bourgeat.html
我使用此 .htaccess 代码执行此操作,但它无法正常工作
RewriteRule ^manufacturer-(.*)$ $1
任何人都知道如何做到这一点,谢谢你
答案 0 :(得分:1)
你打开了重写吗?
试 RewriteEngine on 在重写规则之前
正确─> RewriteRule ^ bourgeat.html /?$ manufacturer-bourgeat.html
为了更加清晰,请查看https://www.addedbytes.com/blog/url-rewriting-for-beginners