I have added two .htaccess files (
- Code: Select all
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301,NE]
So now I have two .htaccess files for enforcing https and the thought comes up, will I have to spam .htaccess files on different folders on this webserver or am I doing something wrong (one .htacess actually also worked for subfolders on a webhost that I tried on earlier)?