Webサイトの3ページにSSLを強制し、残りをhttpに強制しようとしています。
mydomain.com/register、mydomain.com/checkout、mydomain.com/thanksはすべてhttps:にリダイレクトする必要がありますが、他のページではhttp:を使用する必要があります。
これは可能ですか?
私は現在、htaccessにcodeigniter固有のものをいくつか持っています
RewriteEngine on
RewriteCond $1 !^(index\.php|assets|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]