I've used the code below to force pages that need to use SSL to use https. However once going to a secure page all other pages on the site / menu use https. How can I force all pages to use http and only the ones required to use https?
if(Director::isLive()) {
Director::forceSSL(array('/^members/','/^admin/', '/^Security/'));
}