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.
我即将将电子商务商店从 oscommerce 更改为 magento。
我保持 url 结构相同,但需要重写产品和类别 url。
我需要这个:
some-product-url-p-123.html
写到这里:
some-product-url.html
和类别是一样的原理:
some-category-url-c-123.html
至:
some-category-url.html
我一直在努力解决这个问题,花了几个小时寻找但找不到任何东西。任何帮助都会很棒。
这种模式应该适合你:-
RewriteEngine on RewriteBase / RewriteRule ^(.*)?-[pc]-\d+\.html$ $1.html [NC,L]