2
試圖在合併之後讓舊站點重定向到新站點。Apache .htaccess重寫規則
blog.example.com到 - > store.example.com/blog
#Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) https://store.example.com/$1 [R=301,L]
RewriteRule ^$ /blog [L]
我缺少什麼?
是重定向到https://store.example.com/不https://store.example.com//blog – Joe
然後,你必須把它弄壞了複製?這裏是在線測試你可以嘗試:http://htaccess.mwl.be/ –
謝謝,我幫了我很多,得到它與您的原始代碼工作 – Joe