0

すべての画像を対応する https バージョンの URL にリダイレクトしたいのですが、

例: http:// example.com/abc.pngtohttps:// example.com/abc.pnghttp:// www.example.com/abc.pngtohttps:// 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 に余分なスペースを追加しました

ありがとう

4

1 に答える 1