Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
domain1.comとdomain2.comの2つのWebサイトがあります。両方のWebサイトのadminセクションは、/adminディレクトリの下にあります。
domain2.comにリダイレクトするには、domain1.comの公開Webサイトが必要ですが、それでもadmin1.comのadminサブディレクトリにアクセスする必要があります。
これは.htaccessで簡単にできることですか?
のドキュメント ルートにある htaccess ファイルで、domain1.comこれを適切な場所に追加します。
domain1.com
RewriteEngine On RewriteCond %{REQUEST_URI} !^/admin RewriteRule ^(.*)$ http://domain2.com/$1 [R=301,L]