Unable to share blog posts on Google+..."You are being redirected..." message appears
-
This post is deleted! -
When I first visited the page I saw exactly that: You are beeing redirected.
I send a really stupid bot to the page (catches onpage stuff). He saw nothing than: "You are beeing redirected" and "You need Java Script to .......".
The problem is, that Google Plus is equal "stupid" and see's that, but why?
Is it a Java Sript redirect? htaccess? There is still something wrong with the redirects, but I cant see much more ATM. -
You are using Sucuri for protecting your WordPress. And they using JavaScript redirectors as you can see it.
IT's much better to disable such redirectors because they simply kill all your SEO/SMM efforts.
-
Thank you Peter for your response. If I disable the redirectors, won't that cause me to have duplicate pages (www. vs. non-www pages) again? If so, that's not good either. Trying to figure out how to disable the error without having two instances of my website.
-
Thank you Andreas for your response. According to Peter's response below, it's due to Sucuri's use of Javascript to redirect the website. My worry is that if I disable Sucuri's redirectors, I'll end up with two instances of the website (www vs. non-www).
-
You can redirect non-www to www or vice versa with .htaccess.
#Force www:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301,NC]or
#Force non-www:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.example.com [NC]
RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]BUT - you are using Sucuri that make JS redirector against Bots. This is killing for SEO/SMM efforts.
-
Thank you Peter! I contacted Sucuri's technical support and they made a change to their settings which fixed the problem.