Hello again fellow Dolphineers. I am in need of a little more assistance, please.
My current situation is this:
I am creating a Books module. In this books module, a user types in the name of a book or keyword or author. It connects to Google Books and displays a certain number of results ( I have it at 6 right now). If the book is in the list, then I have a import button which retrieves the details about the book from Google Books and enters into my site database. All that works fine and dandy. Here is where my issue is.
Due to what we are trying to accomplish and who our target market is, we have SSL'ed the entire site. So far everything works like it is supposed to. Now, with this new module I am working on, Google Books API allows for a preview of a book, so I want to add this preview to the Book View page. BUT - The preview coding does not allow for SSL.
Is there a way to SSL a whole site - EXCEPT for one page. In my header.inc.php file, I have my domain as https://mydomain.com, and I also have this in my .htaccess file which forces everything to go to https:
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]