.htaccess图像源从http重定向到https

时间:2014-02-18 19:01:16

标签: .htaccess

我正在尝试通过.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]

1 个答案:

答案 0 :(得分:3)

您可以在DOCUMENT_ROOT/.htaccess文件中使用此代码:

RewriteEngine On

RewriteCond %{HTTPS} off
RewriteRule ^images/.+$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]