2011-04-13 122 views
2

我试图找出如何为以下路径设置301永久重定向。如何为后续设置301永久重定向?

来源:/restaurants/casa-villa.html

为:/餐饮/卡萨别墅

谢谢! Jake

+0

您确定要这样做吗?我想你可以在Apache中别名/重写它(假设你在LAMP上)。 – 2011-04-13 02:53:23

回答

1
RewriteEngine On 
RewriteBase/
RewriteRule restaurants/(.*).html /restaurants/$1 [R=301,L] 
+0

我正在寻找一些正则表达式 - 抱歉应该更清楚。因此,如果有100个restaurnts - 我可以通过什么变量,以便.html被删除? – jrutter 2011-04-13 03:32:39

+0

@jrutter:固定 – zerkms 2011-04-13 03:36:54