我正在尝试通过.htacess文件将http更改为https以获取图像标记。
这是源标记
<img src="http://www.example.org/images/post_images/5879.jpg" width="510" height="315">
我想将其更改为:
<img src="https://www.example.org/images/post_images/5879.jpg" width="510" height="315">
这是我的.htaccess文件到目前为止我完成了什么:
RewriteRule ^images/(.*) https://example.org/images/$1 [R]
答案 0 :(得分:3)
您可以在DOCUMENT_ROOT/.htaccess
文件中使用此代码:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^images/.+$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]