How to SSL .htaccess file?

I use cloudflare for my ssl certificate. but When I go to my site using https:// some parts won’t load because off the non https connection: This is my .htaccess code

What did I wrong?

RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.php [L]

Redirect /setup http://payments.hackzone.nl/

Please try to set the correct complete URL with https:// in /application/config/config.php > base_url

nailed it :smile: