Newly Uploaded Images Still only http
-
Hi,
using really simple ssl plugin our site runs fine in https.
At second look, when we upload a NEW image to the Media Library, the image path shown is still https://…. and NOT https.
We checked and https://… is set in the General Settings of WordPress for both WordPress address and site address.
We run a debug on the really simple ssl plugin and here is what we got:
—————————–
Options:
* WordPress redirect
* Mixed content fixer
SERVER: apache
SSL is enabled for this site
** Detecting configuration **
plugin version: 2.5.25
Already on SSL, start detecting configuration
SSL type: SERVER-HTTPS-ON
** Configuring SSL **
testing htaccess rules…
test page url, enter in browser to check manually: https://www.ourdomain.com/wp-content/plugins/really-simple-ssl/testssl/serverhttpson/ssl-test-page.html
htaccess rules tested successfully.
checking if .htaccess can or should be edited…
.htaccess does not contain default Really Simple SSL redirect
retrieving redirect rules
converting siteurl and homeurl to https
—————————–I am not sure, but the part where it says “.htaccess does not contain default Really Simple SSL redirect” might have anything to do with our http upload problem?
Our htaccess file looks like this:
—————————–
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
—————————–What do we need to add to the htaccess file?
Would be great if anybody could help.
- The topic ‘Newly Uploaded Images Still only http’ is closed to new replies.