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.
私はこのコードがwwwを使用して強制することを発見しました。
RewriteEngine On RewriteCond %{HTTP_HOST} !^www.example.com$ RewriteRule ^(.*)$ http://www.example.com/$1 [R=301]
しかし、私は同じディレクトリを指す多くのドメインを持っています。したがって、複数のドメイン用にこのコードのバージョンが必要です。どのドメインでも実行する必要がありますが、可能ですか?
これは機能するはずです:
RewriteCond %{HTTP_HOST} ^[^.]+\.[^.]+$ RewriteRule ^(.*) http://www.%{HTTP_HOST}/$1 [R=301]
サブドメインのないすべてのリクエストをwww.domainame.tldにリダイレクトします。