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.
.htacess ファイルを使用して、メイン ドメインのみをリダイレクトできるようにしたいと考えていますが、そのドメインのサブフォルダーはリダイレクトできません。
例; somesite.com は something.somesite.com にリダイレクトされますが、 somesite.com/example が /example ディレクトリ内にあるものを通過できるようになります。
これに似た質問を見ましたが、コードを使用したいほど十分に答えを理解できませんでした。
somesite.comこれをのドキュメントルートのhtaccessファイルに追加してみてください。
somesite.com
RedirectMatch 301 ^/$ http://something.somesite.com/
mod_rewriteを使用したい場合は、次のようにします。
RewriteEngine On RewriteCond %{HTTP_HOST} somesite\.com$ [NC] RewriteRule ^/?$ http://something.somesite.com/ [L,R=301]