Forum Moderators: Robert Charlton & goodroi
Transferring attributes from one URL to another is not a bug within the Google algorithm, but in general a desirable feature. There are uncountable examples where a page is accessible from more URLs:
Most 302 redirects are not harmful. They first of all bring you traffic, and as long as the Google algo decides for your URL in favor of the redirecting, it shouldn't have a negative effect on your rankings.
More info on this issue in the thread [webmasterworld.com...]
Having had 2 of the 3 being crawled and in google for the last 3 months and having seerps for major keywords go from number 1 for 4 years to 80+ the last 3 months I would contest it doesnt have any effect on your serps.
The bot is going mad spidering /dirname and then /dirname/ one url after another.
Any one with any ideas how to stop the bot doing this would be a great help
The bot is going mad spidering /dirname and then /dirname/ one url after another.
Any one with any ideas how to stop the bot doing this would be a great help.
Temporarily switching the discussion from 302 redirects to 301 for this purpose: The 301 redirect from the version without a / to the one with a / is the best solution. Many hosts have this configured by default. If you are using Apache server and have access to your .htaccess file, you could add the code:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_URI}!/$
RewriteCond %{REQUEST_URI}!\.
RewriteRule ^(.*) http://www.example.com/$1/ [R=301,L]
This rewrites every URL which is not ending in / and withhout a '.' to the version with slash.