HTTPS is invalid and might prevent it from being indexed
Serving a page over HTTPS helps protect your users’ security and privacy
If you are getting the above error in your webmaster, then you are at the right place to fix the issue.
It might be Google feature update which is why you are getting this error. You are also provided by a help article by Google
It it being caused because your website is not redirecting to https forcefully.
This is really easy and you can apply the quick fix to get rid of this error.
You can install Really Simple SSL plugin and add a force https redirect.
If you don’t want to add the plugin, then you can also force redirect to https from the below code which works on WordPress and as well as PHP websites too
You need to add a force redirect to https and your issue should be fixed.
Open your .htaccess file which is normally in folder public_html and paste the below code.
For non-www websites:
RewriteEngine OnRewriteCond %{HTTPS} off [OR]RewriteCond %{HTTP_HOST} ^www\. [NC]RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$ [NC]RewriteRule ^ https://%1%{REQUEST_URI} [L,NE,R=301]
For www websites:
RewriteEngine OnRewriteCond %{HTTPS} off [OR]RewriteCond %{HTTP_HOST} !^www\. [NC]RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$ [NC]RewriteRule ^ https://www.%1%{REQUEST_URI} [L,NE,R=301]
You can now scan your URL again and you should no longer see the error.
If you still have the problem, please free to comment and we’ll try to help you out.
Server Error (500) when trying to access the Cyberpanel If you are getting this error while accessing the cyberpanel, there…
How to connect git with DirectAdmin Login into SSH and run the following command to create a new key pair…
How to host next js app in cpanel Login > Setup Node.js App > Create Application Enter the values shown…
Update via PHPMYADMIN: Disable Captcha : UPDATE tblconfiguration SET value = '' WHERE setting = 'CaptchaSetting'; Update WHMCS link: UPDATE…
3dsecure Access Denied Affiliates Affiliates Signup Announcements Banned Configure Products Downloads Downloads Denied Error Login Logout Password Reset Ticket Feedback…
Export Database via SSH mysqldump --routines -u databaseusername -p databasename > database.sql Import Database via SSH mysql -u databaseusername…