I am trying to redirect http://www.itcontractorsuk.com/news/contracting/guides/2016/Jun/09/6-free-tools-all-contractors-should-use to https://www.itcontractorsuk.com/news/contracting/guides/2016/Jun/09/6-free-tools-all-contractors-should-use in CodeIgniter
but instead of redirecting me to the relevant https path, it redirects me to the HTTPS version of my homepage
No matter what I do, it won't redirect the subfolder / entire path.
My HTACCESS file looks like this:
RewriteEngine On
RewriteBase /
RewriteRule ^(.+)\.html$ index.php [L,NC,R=301]
RewriteRule ^news/index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . news/index.php [L]
Can anyone please help?