Should I Be Linking to HTTP or HTTPS?
in Need Help
I know we use HTTPS for all things now, for good reasons.
So, any reason to build out links to a site that has SSL via unsecure HTTP protocol any longer?
Just curious...thanks!!!
Comments
but you can simply do the 301 modyfing the .htaccess file no?
RewriteEngine On RewriteCond %{HTTP_HOST} ^yourdomain\.com [NC] RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.yourdomain.com/$1 [R,L]you're right , no need to specify port