Can you please help me forcing https from http i am trying since an hour but not able to solve hope you can help me out . Let me know if there is anycharge as well i am ready to pay small price 😀
1 Answers
Try this,
To force use HTTPS insert the following lines of code in the .htaccess file in your website’s root folder.Â
RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.yourdomain.com/$1 [R,L]
Be sure to replace http://www.yourdomain.com with your actual domain name.
Please login or Register to submit your answer
Author - comments - 0