I have the .htaccess file with the following content:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ index.php?path=$1 [QSA,L]
When I load the page, I need to see https: // ...
But only when I click on internal links does the certificate appear.
I do not quite understand these instructions. I know the site uses the MVC framework, so this setting in .htaccess
I also have a config.php, which contains some settings and the following line:
define( 'HOME_URI', 'http://meusite.com/' );
Thanks in advance!