.htaccess 301 redirect

If you mean a meta tag redirect, that's because search engines have issues with that sort of a redirect. By using a 301 redirect they find it easier.

It would be silly to use something that would hurt us like that on this type of site 😛
 
you should just do:
Code:
Redirect 301 /default.htm http://www.bluehumor.org/google/google.htm

or if you have mod_rewrite installed (99% chance you do), try

Code:
RewriteEngine on
RewriteRule ^default.htm$ google.htm [R=301]
 
Back
Top Bottom