0

我即将将电子商务商店从 oscommerce 更改为 magento。

我保持 url 结构相同,但需要重写产品和类别 url。

我需要这个:

some-product-url-p-123.html

写到这里:

some-product-url.html

和类别是一样的原理:

some-category-url-c-123.html

至:

some-category-url.html

我一直在努力解决这个问题,花了几个小时寻找但找不到任何东西。任何帮助都会很棒。

4

1 回答 1

0

这种模式应该适合你:-

RewriteEngine on
RewriteBase /

RewriteRule ^(.*)?-[pc]-\d+\.html$         $1.html [NC,L]
于 2012-05-05T08:57:38.047 回答