2012-10-01 52 views
1

我正在使用Yii框架,並且我遇到了重定向問題。我想從舊版網址重定向到谷歌搜索到我的主頁。但重定向不會受到影響,我得到了404錯誤。我可以指定.htm擴展不會得到404錯誤,而是重定向到首頁?htaccess在Yii中重定向

這裏是我的htaccess文件重定向:

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

舊的URL是這樣的:

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

,我想它重定向到主頁:

http://www.marionettecolla.org/ 
+0

你可以添加到您的問題在谷歌搜索apears舊網址? – Stephan

+0

我編輯了我的問題 –

回答

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 generator