I installed an offcial sll.crt to one of my web sites like discriped in the manual. Works fine calling https://website.domain.tld or https://domain.tld but still http://website.domain.tld or http://domain.tld works. I know there are browser plugins to force https but not anybody has it. So I want to have a automatic redirect to https. Is tha possible to confige in ISP Config. Thanks for any help Rainer
@ressel Thanks, but can you give me a sample or URL to a sample is ist configurable in ispconfig contol pannel or habe I go to the appache conf files Thank you for clearing Rainer
Hello, For Nginx I put following to nginx directives in ispconfig for each site: Code: if ($scheme != "https") { rewrite ^ https://$host$request_uri permanent; } For apache I have used following: Code: RewriteEngine on RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R]