制作.htaccess重写规则

时间:2012-02-22 10:53:15

标签: .htaccess mod-rewrite redirect url-rewriting

我刚刚重新设计了一个电子商务网站,我需要使用.htaccess文件将旧产品页面重定向到新的产品页面。

重写所有页面的重写规则应该是什么,例如:

www.mydomain.com/shop/catalogue,4697,product_name.htm

www.mydomain.com/fr/4697-.html

如您所见,它基于产品ID(在我的示例中为4697)。

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

试试这个:

RewriteEngine on
RewriteBase /

RewriteCond %{REQUEST_URI} ^/shop/.+\,(\d+)\,.+\.htm$
RewriteRule ^ /fr/%1-.html [L,R=301]
相关问题