I have made all necessary changes to convert to https but not working for inner page.
Here is my .htaccess
# Use PHPBETA Single php.ini as default
AddHandler application/x-httpd-phpbetas .php
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteCond %{HTTP_HOST} ^www\.
RewriteRule ^(.*)$ https://example.ae/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
Note: It is working for home/main page like https://example.com. It says its secure. But when i visit https://example.com/otherPage it says insecure.
Note: My website is developed in CodeIgniter. I also changed url in config.php file.
Ref: I followed all these steps
Any Idea??