do links to "http" pages still work with "https" websites

omg123

Regular Member
Joined
Oct 29, 2009
Messages
445
Reaction score
62
i have just bought an expired domain that has some really good links pointing to mostly internal pages,
every single one of the links are pointing to "http" pages , as oppossed to "https" pages.

as everyone has "https" urls these days, if i have a "https" website, with "https" uls, will the link juice be transferred to my website pages (after i have rebuilt the pages)

or would it be better to have a "http" website with "http" urls ? or would that be detrimental to the site ?


also does anyone know the best way to catch the link juice from 404 pages that cant be rebuilt , mostly because of the url structure.
 
sorry, but what is it that you are saying isnt going to be a problem ?

because i dont know what you are talking about
 
sorry, but what is it that you are saying isnt going to be a problem ?

because i dont know what you are talking about
The problem: the links are pointing to ''http'' websites instead of ''https''

I don't see it as a problem, it should work fine
 
also does anyone know the best way to catch the link juice from 404 pages that cant be rebuilt , mostly because of the url structure.
Redirect the pages/URLs to the homepage.

Regarding your https/http issue, you shouldn't bother much. If the site is on https at the moment, all http links would redirect to the https and so would the link juice(if any).
 
Take a look at fabricjs! lol they still run their website for using this canvas HTML 5 library from HTTP: only. I don't know why I never had warnings in chrome, but I guess HTTP gets some super google scanning, cause it isn't encrypted.
 
Redirect the pages/URLs to the homepage.

Regarding your https/http issue, you shouldn't bother much. If the site is on https at the moment, all http links would redirect to the https and so would the link juice(if any).



thank you for all your replies,

"Redirect the pages/URLs to the homepage." - with what ? should i use a redirect plugin, or something within cpanel ?
 
"Redirect the pages/URLs to the homepage." - with what ? should i use a redirect plugin, or something within cpanel ?
I think irrespective the method you use, Google would eventually pick it up and take note.
 
Take a look at fabricjs! lol they still run their website for using this canvas HTML 5 library from HTTP: only. I don't know why I never had warnings in chrome, but I guess HTTP gets some super google scanning, cause it isn't encrypted.


i took a very quick look, but i dont understand how this would fit in with what i am trying to do ?

I think irrespective the method you use, Google would eventually pick it up and take note.


but some things work & some things dont, what would be the best method ?
 
but some things work & some things dont, what would be the best method ?
They both work. That's what I was trying to say. Anyway, go with cpanel option.
 
i have just bought an expired domain that has some really good links pointing to mostly internal pages,
every single one of the links are pointing to "http" pages , as oppossed to "https" pages.

as everyone has "https" urls these days, if i have a "https" website, with "https" uls, will the link juice be transferred to my website pages (after i have rebuilt the pages)

or would it be better to have a "http" website with "http" urls ? or would that be detrimental to the site ?


also does anyone know the best way to catch the link juice from 404 pages that cant be rebuilt , mostly because of the url structure.
Place this in your .htaccess file.

# Redirect to HTTPS rule
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
 
Place this in your .htaccess file.

# Redirect to HTTPS rule
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]



ok, thanks - i will do that tomorrow.

do i include the top line of the code, or is that the title of the code ? (the "# Redirect to HTTPS rule")
 
ok, thanks - i will do that tomorrow.

do i include the top line of the code, or is that the title of the code ? (the "# Redirect to HTTPS rule")

only
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
 
I reckon Google probably have that figured out. I don't think I know of any example of a website that serves different pages on https compared to their http variant.

You should be fine.
 
I reckon Google probably have that figured out. I don't think I know of any example of a website that serves different pages on https compared to their http variant.

You should be fine.
pages can be corrupted in http and sometimes in https. for this you need to get the installations and software right
 
Back
Top