Is it possible? Yep, we can redirect the non SSL query to your website to SSL port by using .htaccess file in the website’s public folder. If the file is not there, go ahead and simply create it. This will help you to access the websites from a secured port(443 of apache) of we server. Please do follow the steps explained below:
1, Create/Open the file .htaccess
2, Add the following redirect rule.
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
That’s it!
Is it possible to add HTTP to HTTPS redirection rule from cPanel?
Yes, it is. If you have a cPanel server, you can define the redirect rule from the cPanel of the website. Please follow the steps listed below:
1, Log into cPanel.
2, Move to “Redirects” under “Domains” tab.
3, Define rule from here;
That’s it!
Related
1, How to disable phpinfo(); in a shared environment/hosting?
2, .htaccess rules for not executing php in images folder
3, How to prevent .htaccess file modification while running easyapache ?