301.htm后重定向空间

时间:2013-10-20 23:49:01

标签: .htaccess redirect

我正在尝试将我的.htaccess中的301重定向从“http://example.com/article.htm k”改为“http://example.com/article.htm”。我试过了,

Redirect 301 "http//example.com/article.html k" http://example.com/article.htm

如上所述,用%20和[\ s]代替k的空格。这些似乎都不起作用。我认为这个问题是因为空间是在.htm之后而不是之前。关于如何解决这个问题或问题可能是什么的任何想法?感谢。

1 个答案:

答案 0 :(得分:0)

您需要使用Redirect作为

Redirect 301 /article.html\ k http://example.com/article.htm

或使用RedirectMatch(指定正则表达式)

RedirectMatch 301 /article\.html\sk http://example.com/article.htm