you dont need any plugins for https routing.
if you have installed the ssl certificate, just add the following rule into your htaccess file:
# HTTPS redirect
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}/$1 [L]
</IfModule>