-1

我正在尝试在我的 .htaccess 中从“ http://example.com/article.htm k”到“ http://example.com/article.htm ”进行 301 重定向。我试过做

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

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

4

1 回答 1

0

You need to use Redirect as

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

or use RedirectMatch (to specify a regex)

RedirectMatch 301 /article\.html\sk http://example.com/article.htm
于 2013-10-21T00:07:59.480 回答