Forum Moderators: phranque

Message Too Old, No Replies

FilesMatch & Googlebot 302

It is not working these days

         

jimpoo

7:44 pm on Feb 19, 2004 (gmt 0)

10+ Year Member



I use the following setting in the .htaccess file:
<FilesMatch "^widgets$">
Options MultiViews
ForceType application/x-httpd-php
</FilesMatch>

So when the server get a request of

http://domain/widgets/1,ID23/balabala.html
, it will run widgets.php to handle the request.

I noticed that these days when Googlebot/2.1 try to crawl my pages, most of the request besides '/' return 302 code to Googlebot, but just last week, they could return 200 code to Googlebot.
The following are a sample of the logs:
64.68.82.169 --- GET /widgets/1,ID23/Blue_Widget.html HTTP/1.0" 302 0 "-" "Googlebot/2.1
64.68.82.201 --- GET / HTTP/1.0" 200 3480 "-" "Googlebot/2.1
64.68.82.170 --- GET /widgets/12,ID813/Red_Widget.html HTTP/1.0" 302 0 "-" "Googlebot/2.1

I guess it is because Googlebot has just changed its behavior, if I remove the 'Options MultiViews', it will not work.
Somebody told me that I should use 'Options +FollowSymLinks' , so what is the different between
'Options +FollowSymLinks' and 'Options MultiViews' in apache server .htaccess setting?

I might try:

<FilesMatch "^widgets$">
Options MultiViews
Options +FollowSymLinks
ForceType application/x-httpd-php
</FilesMatch>

to see what is going on Googlebot next day.
Anybody have idea?

jdMorgan

11:07 pm on Feb 19, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



If you have changed absolutely nothing on your site, and yet Google can no longer spider it, I would strongly suggest contacting Google to report this problem.

Contrary to rumor, they *do* respond if your message is important and detailed, but clear and concise.

Jim

jimpoo

11:52 pm on Feb 19, 2004 (gmt 0)

10+ Year Member



And I noticed that the problem started from 01/Feb/2004