If I go to www.mysite.com, the ads show fine. But if I type in mysite.com, the ads don't show. It's just hurricane relief. Does anyone know why it's doing this?
yes, because www,something,com and just something,com are considered two different domains. Google hasn't yet spidered the non-www part, even though you and I both know it contains the same text, Google spider can't be sure until it actually spiders it. Tip for ya, use htaccess to redirect all non-www requests to the www domain: RewriteEngine On RewriteCond %{HTTP_HOST} !^www\.mydopesite\.com RewriteRule (.*) http://www.mydopesite.com/$1 [R=301,L] Code (markup):
This weird. I did the htaaccess redirect and it worked fine yesterday. Today, if you type in the mysite.com, it redirects to www.mysite.com, but one of the three adsense blocks is still showing PSA ads. What the hell? edit: I typed in the url a few more times and the ads started showing up. Still, that baffles me, because as far as google is concerned, it was the same old page that has always been showing ads. I wonder if it was just a glitch in google and had nothing to do with my redirection.