> But I want a force to https.
> How can I achieve this, how is it possible.
If you can use mod_rewrite, use mod_rewrite to redirect users to the
same page but via SSL.
Try something like:
RewriteCond %{HTTPS} off
RewriteRule ^.*?$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
Tomas Mrozek