私のサイトのルートディレクトリに、という名前のファイルを作成します.htaccess
。次のコードをその中に入れます。しかし、 example.com /test.htmlにアクセスするとき 。
http://www.example.com/test.htmlにリダイレクトされません
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com$ [NC];
RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]
ありがとう、その理由は何ですか?