SSL Support

From what I hear it does not, but you can always force it using .htaccess

I force it for my admin area using the following:

Code:
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteCond %{REQUEST_URI} admin.php
RewriteRule ^(.*)$ https://mywebsite.com/admin.php [R,L]
 
Top Bottom