You might sometimes want or face issue that your drupal always redirect to secure connection (https://) protocol.
You might want to disable it, especially in local development environment.
Note: It’s always a good idea to have the secure connection in production server if it’s available, but normally it costs you extra on that feature on the hosting.
Solutions
1. At the end of the settings.php file put a line:
$conf['securepages_enable'] = FALSE;
2. Another option, you can set value in a table: system.status to 0
-- securepages select * from system where `name` like '%sec%';
One reply on “[Drupal] Disable secure connection (https://)”
The solution is worked for me.