1

我正在使用 Yii 框架,但我遇到了重定向问题。我想从谷歌搜索中出现的旧网址重定向到我的主页。但是重定向没有生效,我收到 404 错误。我可以以某种方式指定 .htm 扩展不会出现 404 错误而是重定向到主页吗?

这是我的 htaccess 文件中的重定向:

Redirect /file\s_mostra_milano/mostra_marionette-milano.htm http://marionettecolla.org/

旧网址是这样的:

http://www.marionettecolla.org/file%20_mostra_milano/mostra_marionette-milano.htm

我想将它重定向到主页:

http://www.marionettecolla.org/
4

1 回答 1

1

试试这个 :

Redirect /file%20_mostra_milano/mostra_marionette-milano.htm http://www.marionettecolla.org/

如果你想使用正则表达式试试这个:

RedirectMatch /file[ ]_mostra_milano/mostra_marionette-milano\.htm$ http://www.marionettecolla.org/

最后但同样重要的是,这里有一个在线.htaccess 生成器,用于创建或更新您的 .htaccess。

于 2012-10-01T13:34:13.563 回答