Enable SSL(HTTPS) for Visichat Admin Panel

A while back, I shared a post  7 Tip's to secure your Visichat admin panel  . What if you use SSL (https://) on your Visichat admin panel ?






What is SSl ?
SSL (Secure Sockets Layer) is the standard security technology for establishing an encrypted link between a web server and a browser. This link ensures that all data passed between the web server and browsers remain private and integral. SSL is an industry standard and is used by millions of websites in the protection of their online transactions with their customers. 


You don't want to have to put force-SSL PHP code on every page, right? Well, the website's .htaccess file comes to the rescue.

RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteCond %{REQUEST_URI} adminfolder
RewriteRule ^(.*)$ https://www.domain.com/adminfolder/$1 [R,L]


The .htaccess file should be placed in your visichat admin panel folder

1 comment:

Have a question?Use comment form !