You have 93 URLs excluded. Check for the reason why they are excluded.
Google search console gives redirect error if your site is https and you're checking for http version of the URL. You should check robots.txt to see if you've set any URLs or sub-folders to disallow. Also check your htaccess file to see if you've blocked anything.
Thanks, please ignore my previous post and thanks for all the help today, i believe i am starting to understand the problem, i found the htacess file and i can not see anything blocked but it does state it will overwrite:see below
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301,NE]
# BEGIN WordPress
# The directives (lines) between "BEGIN WordPress" and "END WordPress" are
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
============================================
If i am right i believe the wordpress address & site address are HTTPS as is the Security Certificate. I did find how to edit the Robot.txt file editor which does state the following but i wouldn't know how to edit it. You are right that the Google Search Engine is indeed looking (Google search console gives redirect error if your site is https and you're checking for http version of the URL) All the URLs are HTTP that have not been indexed. However when i look at the Permalink it states HTTPS even though Google has this as HTTP.
How is this changed?
robot. txt File Editor Text
User-agent: *
Disallow: /wp-admin/
Allow: /wp-admin/admin-ajax.php
Am i on the right track?
Thanks in advance.