Disable SSL / HTTPS for wordpress

Check your wp-config.php file for lines like:

define( 'WP_SITEURL', 'https://example.com' );
define( 'WP_HOME',    'https://example.com' );

Also check your database’s {prefix}_options table:

SELECT * FROM wp_options WHERE option_name="siteurl" OR option_name="home";

…assuming that your database’s prefix is wp_.

Leave a Comment