BASE URL issue with SSL encryption
PermalinkThis allows me to click on the "Submit Info Securely" link on my site and achieve an encrypted connection, however if I click on one of my other pages (home, events, contact) I am still in an encrypted connection and my address bar maintains thehttps://secure.bluehost.com/~myusername/testsite/index.php/whateverp... I would like to terminate the encrypted connection and revert back tohttp://www.mydomain.com/testsite/whateverpageIamon.... Is there a procedure utilizing possibly an IF statement I could add to the site.php config file to call up define('REDIRECT_TO_BASE_URL', false); when an ssl hyperlink is chosen and
define('BASE_URL', 'http://www.mydomain.com');
define('DIR_REL', '/testsite'); when a regular (non ssl) http hyperlink is chosen? I know I could achieve this by excluding all my pages from autonav and creating external hyperlinks for each page but that defies the purpose of autonav. Any help or guidance would be greatly appreciated.

Then you can still use the autonav addon.
Edit the config.php file
My ssl site:
<?php define('DB_SERVER', 'localhost'); define('DB_USERNAME', 'db_username'); define('DB_PASSWORD', 'db_password'); define('DB_DATABASE', 'db_database'); define('BASE_URL', 'https://domainname.com'); define('DIR_REL', ''); define('PASSWORD_SALT', 'J7zxKgpStqX6lYTc1RaB8MkWe4unfUrmZjE9IhynG2osVvfLA'); define('PERMISSIONS_MODEL', 'advanced'); ?><?php define('REDIRECT_TO_BASE_URL', true); ?>