I am trying to move my wordpress site from http to https://
These are the things I did
- From admin panel changed the url from
http://example.comtohttps://example.com - Took a db dump and replaced all
http://example.comtohttps://example.com
Still some of the CSS files are loading with http://** as seen in the below image. Any pointers which file I need to change these urls to https ?
This is my .htaccess if that matters
# BEGIN WordPress
# The directives (lines) between `BEGIN WordPress` and `END WordPress` are
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.
<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
