Hi,
i would like to use for my Processwire project a secure https connection instead of a regular http connection. For this reason i installed a valid ssl certificate and added a new htaccess rule and condition to my htaccess file:
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://domain.tld/$1 [R,L]
Now, when i try to access the page via „http://domain.tld/application/xyz“ i get redirected to „https://domain.tld/?it=application/xyz“. Does anyone know how the rule must be adjusted so that the rewriting is still working correctly? The problem only appears if the user comes from a http url.
Thanks
Tom