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.
htaccessファイルを使用して、www以外のトラフィックをWebサイトのwwwバージョンにリダイレクトする方法を誰か提案できますか?ルートディレクトリに作成したファイルがあることは知っていますが、何を入れればよいかわかりません..何かアイデアはありますか?
比較的簡単。
「www.」で始まらないものと一致します。「www.」にリダイレクトします。バージョン:
RewriteEngine On RewriteCond %{HTTP_HOST} !^www\. RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]