1
我想從http或https重定向到一個新網站。htaccess從https獲得重定向404
RewriteEngine On
RewriteBase/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteRule . index.php [L]
Redirect /abc https://www.newdomain.com/abc
該工程─http://www.olddomain.com/abc
不過這樣會404- https://www.olddomain.com/abc。
對不起。我認爲我原來的解釋不夠好。只有幾頁重定向到新網站而不是整個舊網站。我會嘗試你的解決方案,只需要爲每個頁面添加一個rewriterule。 –