I have migrated to https some pages of my site but Google is still showing http version - web

I don't want to migrate the whole site at same time, only some pages for now.
I have done:
install valid certificate
securized all resources into the html code of these pages.
add rel canonical tag
redirect 301 of some pages from http to https version through .htaccess
Google Chrome shows green secured status when access to these pages. Everything it's ok.
I haven't added new site property for https version in Google Search Console because if I do it Google will go to index my whole https site, and i don't want that to happen.
I made these changes 4 days ago and Google still is showing in search results the http version of my migrated pages.
I don't know if we have to add a new property in Google Search Console mandatory or if I just have to wait to google bot recognize the 301 redirect an reindexe pages.
Regards

Try to add links with https in sitemap.xml and add this sitemap in robots.txt and wait googlebot

SOLVED. After 5 days from changes Google is showing https version of my pages. Regards

Related

How to stop all web pages of my site being redirected to homepage

I installed Drupal 7 and developed a basic site for a friend (http://www.misterklean.org.uk)
It was working lovely, then I noticed months later that every single link on the site (including admin links like admin login!) are being redirected to the homepage.
I contacted my hosts who are refusing to help, saying that it's a scripting problem. The htaccess file hasn't changed since I initially uploaded it - and I've tried re-uploading a default htaccess file which I know works on another of my drupal sites (same hosting company)
I've looked at the server error log file and can't see anything since I'd finished developing the site.
I can post the htaccess file here if people think it might help.
you have not enable the clean URL on the server. so you need to disable the Clean URL form Drupal Admin or database.
you can view the pages like below:
http://www.misterklean.org.uk/?q=clients
http://www.misterklean.org.uk/?q=payment-options
http://www.misterklean.org.uk/?q=enquiries

301 redirects keep going to page not found

I am currently working on a website. I was not the developer but i am doing the fixes. The plugin simple 301 redirect is being used to redirect the dead site pages to the new live site. The issue is that even tho the url's for the old site is correct and so are the new ones, some of the old url's redirect properly but others are going to page not found. Any advise?

Migrating Website from HTTP to HTTPS

I have to migrate a website from HTTP to HTTPS and keep user experience unchanged (no warning popups). What would be the front end main points to be verified?
I realized I have to make sure all inclusions (CSS, images and JS) have to reference https content, but I'm still not sure about the a(link) href attribute and if there's anything I'm missing.
How to migrate to HTTPS is an excellent migration howto. The steps are:
Get and install certificates
Enable HTTPS on your servers
Make intra-site URLs relative
Redirect HTTP to HTTPS
Turn on strict transport security and secure cookies
Between step 3 and step 4, run through Qualys' best practices and test your site.
Updated Feb 02, 2016
Planning on moving to HTTPS? Here are 13 FAQs! visit https://plus.google.com/+JohnMueller/posts/PY1xCWbeDVC
I done of my website and works perfectly (it depends on the size of your site). My site is local business indexed (2,xxx) on google
1. No effect on SEO Ranking
2. No effect on link juice
Related links will ref to https automatically. All absolute links have to ref to https, unless you configure your htaccess file to redirect all http traffic to https.

Drupal 6 Admin Links Broken

I'm trying to to upgrade a site from Drupal 7 which is going to be moved to a new server. I've moved the site to the new server, and am accessing it through the IP address. All the pages and page links work properly when viewing the site, but when I try to access any of the admin links (i.e. /admin or /admin/config), I'm redirected to the live Drupal 6 site on the old server. I've updated the htaccess file, and changed the base_url variable in the settings file. Any other recommendations? Thanks in advance!
When I've seen that before, it's been due to the Secure Pages module. Make sure you have the Secure Base URL and Non-secure Base URL set correctly for the new site.

HTTP Module causing problem with Google Cache

I have a live site ( I can't provide the URL ).
It is on sharepoint 2007. The pages were having a URL, later that was modified.
I wrote a http module and used response.redirect() to navigate user to the correct page.
But since the site was live previously; on searching on google.com, it shows the old URL only. Though the redirection works fine. I need to change the cached URL to new URL.
How can I do that ?
You need to understand the different redirect codes - by itself response.redirect() just redirects a browser (or bot) to another address.
You should have been issuing a 301 redirect then Google and other services (its been roumered that there are a few other games in town) would have eventually removed the old URL and replaced with the new URL and all your 'link juice' would be kept.
If you need to change the URL of a
page as it is shown in search engine
results, we recommended that you use a
server-side 301 redirect. This is the
best way to ensure that users and
search engines are directed to the
correct page. The 301 status code
means that a page has permanently
moved to a new location.
ASP.NET code for this
Response.Status = "301 Moved Permanently"
Response.addheader "Location", "http://www.newdomain.com/newurl/"
Response.end
Try to look here. Not sure, but it can help you.

Resources