I'm trying to force SSL on 3 pages of a website, and force the rest to http
mydomain.com/register , mydomain.com/checkout and mydomain.com/thanks all need to redirect to https: but any other page should just use http:
Is this possible?
I currently have some codeigniter specific stuff in my htaccess
RewriteEngine on
RewriteCond $1 !^(index\.php|assets|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]