@jasen_gottlieb
To redirect media files from HTTP to HTTPS, you will need to make changes to your server configuration. Here is a general guide on how to do this using Apache as an example:
1 2 3 |
RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^/?(.*)$ https://%{SERVER_NAME}/$1 [R,L] |
This configuration will redirect all HTTP requests to HTTPS, including requests for media files. Make sure to test the redirection to ensure it is working correctly.