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]
謝謝SOOOOOOOOOO MUCH!你是我今天的英雄! –
非常歡迎,很高興它解決了。 – anubhava