XF 2.1 SSL is not active yet.

Also redirect all requests to the https: version.

There are several ways to do this. If you have cPanel, you can do this on the Redirects page.

Using .htaccess:

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

Code:
RewriteEngine on
RewriteCond %{SERVER_PORT} ^80$
RewriteRule ^\$\/?(.*)$ "https\:\/\.{your-domain}\.com\/\$$1" [R=301,L]
 
It handles requests for forum URLs only. Using cPanel Redirects takes only a minute and handles all redirects. Using .htaccess takes a few minutes but handles all redirects for your site/domain.

I prefer to cover all bases, personally. What you do with your site is up to you.



Site move with URL changes
The page URLs change. For example:
  • The protocol changes — http://www.example.com to https://www.example.com
  • The domain name changes — example.com to example.net
  • The URL paths change — example.com/page.php?id=1 to example.com/widget
Migrating from HTTP–>HTTPS
  • Review the best practices for HTTPS.
  • Be sure to add the HTTPS property to Search Console. Search Console treats HTTP and HTTPS separately; data for these properties is not shared in Search Console. So if you have pages in both protocols, you must have a separate Search Console property for each one.
  • Here are additional FAQs for migrating pages from HTTP to HTTPS:

HTTP–>HTTPS migration FAQs
 
It handles requests for forum URLs only. Using cPanel Redirects takes only a minute and handles all redirects. Using .htaccess takes a few minutes but handles all redirects for your site/domain.
I prefer to cover all bases, personally. What you do with your site is up to you.


You only need to do what @Brogan posted.
Set the Board URL to the https and check the canonical option.

View attachment 232983
Thanks to all, i have done accordingly as brogan advised and its working now.
 
Top Bottom