2014-05-02 215 views
1

問題:我剛剛對我的公司網站進行了重大更新,並試圖讓重定向工作。現在,如果我有htaccess 301重定向問題

Redirect 301 folder1/oldFile1.html http://www.mysite.com/newFolder1/newFolder2/newFile.html 

,當你到了新成立了,我得到這個,而不是什麼導致這404個

http://www.mysite.com/newFolder1/newFolder2/newFile.htmloldFile.html

什麼想法?

注意:這隻會出現在從1文件夾結構移動到2文件夾結構的文件中。

RewriteOptions inherit 
Options +FollowSymlinks 
RewriteEngine on 
rewritecond %{http_host} ^mysite.com [nc] 
rewriterule ^(.*)$ http://www.mysite.com/$1 [r=301,nc] 
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /.*index\.html?\ HTTP/ 
RewriteRule ^(.*)index\.html?$ http://www.mysite.com/$1 [R=301,L] 

回答

1

不要mod_alias規則混合mod_rewrite規則。

使用這個代替:

RewriteOptions inherit 
Options +FollowSymlinks 
RewriteEngine on 

RewriteCond %{http_host} ^mysite\.com$ [NC] 
RewriteRule ^(.*)$ http://www.mysite.com/$1 [R=301,NC,L] 

RewriteCond %{THE_REQUEST} \s/.*index\.html?\ HTTP/ 
RewriteRule ^(.*)index\.html?$ http://www.mysite.com/$1 [R=301,L] 

RewriteRule ^folder1/oldFile1\.html$ /newFolder1/newFolder2/newFile.html? [R=301,L] 
+0

謝謝SOOOOOOOOOO MUCH!你是我今天的英雄! –

+0

非常歡迎,很高興它解決了。 – anubhava