Sorry about the double post, but I couldn't find an edit post function.
Anyhooo, I found a work around, kinda kludgy but it does the job.
In the DreamWorld GUI under SSL I enabled SSL.
Then I went into the Apache conf directory and edited the http.conf file.
Lines 194-200 I made sure it said "Define SSL"
# SSL/TLS Certificates
# HTTPS(SSL/TLS). You need to put certs in extras\Certs
# changed by Dreamgrid
Define SSL
<IfDefine SSL>
LoadModule ssl_module modules/mod_ssl.so
</IfDefine>
Then lines 339 to 341 I commented out.
#<IfModule ssl_module>
# RedirectMatch Permanent "^(/(?!Search/).*)" https://%{ServerName}$1
#</IfModule>
then lines 601-603 I commented out as well.
#RewriteEngine On
#RewriteCond %{HTTPS} !=off
#RewriteRule ^/?(.*) https://%{ServerName}/$1 [R,L]
These edits allow me to access the site with both http and https.
Now this is probably not the "proper" way to handle the situation, but it's working for now until a more "suitable' solution is presented.