我有两个入站链接,落地在404页,因为这些链接是松软的。我尝试了301‘这些链接作为正常,但没有成功,我相信,因为从这个外部网址使用的字符。
Column<u>Radiators.html此外部网站上是否建议使用该页面
Column_Radiators.html是实际的页面。
也是
Bath%3Cu%3EFiller.html在外部站点上,
Bath_Filler.html在我们真正的网站上。
我怎样才能成功地重定向这些页面?
发布于 2011-09-27 18:52:29
只需在.htaccess中添加以下行
redirect 301 /Column<u>Radiators.html /index.html
redirect 301 /Bath<u>Filler.html /index.html注意:我使用index.html作为默认重定向,但您也可以使用自定义的404。
https://stackoverflow.com/questions/7567152
复制相似问题