Magento how to check whether SSL redirection is enabled using MySQL command line and disable it if needed
To check whether SSL redirection is enabled or disabled in Magento using MySQL command line, you can execute the following SQL query:
SELECT * FROM core_config_data WHERE path LIKE '%web/secure/use_rewrites%';
If the value of the value column is set to 1, then SSL redirection is enabled.… Read the rest