Does anyone has any ideea of how i can make that when someone enters my ip and hit go in browser to acces https://ip instead of default http://ip? I already installed SSL but do not know how i can redirect...
if you are using apache here is a link I googled joseph.randomnetworks.com/archives/2004/07/22/redirect-to-ssl-using-apaches-htaccess/ or if you are using php, I can show you how to do it that way as well. HTH
I think -You really don't need to know what it all stands for; the important thing is the letter S which makes the difference between HTTP and HTTPS. The S stands for "Secure". You probably didn't need me to tell you that, because you already knew it had something to do with security
# Force use of https RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
why u want to force client to acces all website only via http secure, i see most websites just use https for the login and register page. Is there any side effect to acces all website only via http secure?