Forum Moderators: phranque
If not, I'd suggest the "Live HTTP Headers" add-on for Firefox and Mozilla-based browsers.
You may also want to search for on-line user-agent spoofing tools or use the User-agent switcher add-on (again for Firefox and Mozilla-based browsers) to request URLs as a Googlebot and see exactly what Googlebot sees.
If your server responses look good using these tools, then you can be fairly sure that the problem was simply a Google-glitch.
Jim
so I have just decided to add header("HTTP/1.x 200 OK") after the includes.
am also using the more efficient
RewriteRule ^(.*)/$ $1.php [nc]
instead of multiviews
Live HTTP Headers is really useful!
Includes on your WP pages should probably refer to local files, rather that generating additional HTTP requests. That is, include a local file, not a URL.
Also, your RewriteRule requires a trailing slash on the requested URL. Is that what you want? If not, then
RewriteCond $1 !.\.php$
RewriteRule ^(.+)/?$ /$1.php [L]
Jim