Ssl question

Hi i have a question , if u have ssl how to acctivate the ssl on my domain like exemple :
domain. com/forums . I like to add ssl on the forums . How i do that. Because on my main page exemple : domain . com i have ssl and on my /forums i don’t have it.

Hi there,

Everything in your site including all your subdirectories of your domain will be covered by the SSL certificate of your root domain no matter how many subdirectories you have (e.g. https:// domain.com/subdir/subdir/subdir).

You can insert this code into your .htaccess to force all traffic to secure https connection:

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
1 Like

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.