XF 1.4 ssl problem

need to redirect the domain to https but i do not known where in htaccess to change it and its saids not secure because i got images
 
need to redirect the domain to https but i do not known where in htaccess to change it and its saids not secure because i got images

If your forum index.php is in public_html, then add this to the top of the .htaccess file in the public_html directory:

Code:
RewriteEngine On

RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

You can get around the non-secure error by enabling the image proxy.

Liam
 
Last edited:
What chat program is it? If one of the external scripts, then you will need to make sure that wherever you are connecting to supports https also.
 
Some of your smilies must be linked from external sites which are http. Same thing happened to me until I found them and moved them to my site.
 
Top Bottom