How to change URLs from http to https in MYSQL Database

Follow the below code and run:

 

 UPDATE table_name 

    SET column_name = REPLACE(column_name , 'http:', 'https:') 

        WHERE column_name LIKE '%http:%'

Previous
Next Post »
Related Posts Plugin for WordPress, Blogger...