1
このfirst.domain.comをsecond.domain.comにステルス転送する最も簡単な方法は何ですか? .htaccessファイルでこのコードでそれをしようとして:ステルスドメイン転送
RewriteEngine On
RewriteCond %{HTTP_HOST} ^first.domain.com$
RewriteRule (.*)$ http://second.domain.com [R=301,L]
と
rewriteengine on
rewritecond %{REQUEST_URI} first.domain.com/
rewriterule (.*) http://second.domain.com [l,nc]
しかし、私はまったく運がありませんよ。ページが既にsecond.domain.comにある場合でも、アドレスバーに「first.domain.com」を保持したい前もって感謝します。