すべての画像を対応する https バージョンの URL にリダイレクトしたいのですが、
例: http:// example.com/abc.png
tohttps:// example.com/abc.png
とhttp:// www.example.com/abc.png
tohttps:// www.example.com/abc.png
フォローしてみた
RewriteEngine on
RewriteCond %{HTTP_HOST} ^wahab.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.wahab.com$
RewriteRule ^(.*).(jpg|jpeg|png|gif)$ https ://% {HTTP_HOST} %{REQUEST_URI} [R=301,NC,L]
しかし、ループをリダイレクトする
注: 警告や制限を避けるために、URL に余分なスペースを追加しました
ありがとう