Yeah, I usually add every version of my websites as a separate Google Search Console property. So when you have HTTPs set up, you add the following properties:Also, I read somewhere that you should keep a property in webmaster tools for each version of your site (http, https, www) , I don’t have the source for this though, and I’m not sure it’s necessry.
You're supposed to add those versions to ensure that you corretly 301 redirected the HTTP versions of your website to whichever HTTPs version you selected. After some time, the HTTPs version will be indexed and you should see the HTTP version's page become deindexed.Add your site to Search Console. Be sure to add all variations of your site root URL, including www and non-www versions, and all subdomain variations (example.com, m.example.com, pets.example.com). When you add your site to Search Console, we refer to it as a property. That's because Search Console supports both websites and apps.
Please take a look at my last post.updating your .htaccess file to redirect incoming links to the new individual https pages is a good idea. there are several threads on BHW covering this.
This is the code I added to my htaccess file. It's the only one that worked, but I don't know if the code is okay.
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.site.pro/$1 [R=301,L]