@zoker
No this is not currently included as a feature in the iTSec plugin.
Use the SSL ‘Per content’ setting and then use insert SQL statements on the [prefix]postmeta table for every post\page (except 1) to enable the ‘Enable SSL:’ setting from phpMyAdmin.
For example if you have 5 posts (id=1 to 5) and you want to exclude post id 3 from SSL:
insert into [prefix]postmeta (meta_id
, post_id
, meta_key
, meta_value
) VALUES (NULL,’1′,’itsec_enable_ssl’,’1′);
insert into [prefix]postmeta (meta_id
, post_id
, meta_key
, meta_value
) VALUES (NULL,’2′,’itsec_enable_ssl’,’1′);
insert into [prefix]postmeta (meta_id
, post_id
, meta_key
, meta_value
) VALUES (NULL,’4,’itsec_enable_ssl’,’1′);
insert into [prefix]postmeta (meta_id
, post_id
, meta_key
, meta_value
) VALUES (NULL,’5,’itsec_enable_ssl’,’1′);
Where [prefix] should be substituted with your database tables prefix (eg: wp_).
Needless to say the above procedure is at your own risk and should only be performed after creating a database backup.
dwinden