Google Indexing Some Of My Pages As https

dreamscape

Pedaling Down The Road
Dec 21, 2012
539
6
0
Capac, MI
My site is a wordpress site and today I noticed that Google has indexed some of my pages as "https" instead of "http"

I do not have or never had a SSL cert installed on this website's domain. I do use canonical urls and all are set at the regular "http"

I never modified the default robots.txt or .htaccess files but here they are:

My robots.txt file:

User-agent: *
Disallow: /wp-admin/
Disallow: /wp-includes/

My .htaccess file:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress

If anyone can help me figure out why this is happening and how to fix it I'd greatly appreciate it.
 


htaccess rule to force http should work. Odd that https pages could be crawled without a cert though. Pm me the URL and I will give you my opinion.
 
htaccess rule to force http should work. Odd that https pages could be crawled without a cert though. Pm me the URL and I will give you my opinion.

Tried this but it's not doing anything:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteCond %{HTTPS} on
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI}

</IfModule>
# END WordPress
 
Google is just nuts...
Now it's indexing URLs from my /wp-includes/ folder.
A description for this result is not available because of this site's robots.txt
 
I got this solved and thought I'd update this in case someone else runs into this issue...
I noticed it started happening after I installed and activated the WPtouch plugin... I uninstalled it and deleted the files last night and Google is now indexing my pages correctly...