2014-02-18 49 views
1

我試圖通過.htacess文件將http更改爲https圖像標記。.htaccess圖像源從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] 

回答

2

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

RewriteEngine On 

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