Forum Moderators: phranque
<html>
<head>
<title>Redirect to the right page</title>
<META
http-equiv="refresh" content="0;URL=http://www.site.com/item">
</head>
</center>
</body>
</html>
It works great, thanks dailypress. tim222s solution will not work because there is just way to many pages to duplicate, plus the above option is simpler.
<html>
<head>
<title>Redirect to the right page</title>
<META
http-equiv="refresh" content="0;URL=http://www.site.com/item">
</head>
</center>
</body>
</html>
It works great, thanks dailypress. tim222s solution will not work because there is just way to many pages to duplicate, plus the above option is simpler.
tim222s solution will not work because there is just way to many pages to duplicate, plus the above option is simpler
Actually, if it was my website I think I would fix the links. But I agree with phranque that a 301 in the .htaccess file is a better solution than an HTML meta tag redirect.
Do a google search for: How to Redirect a Web Page
The first result is pretty useful. It covers different scripting languages.
Meanwhile, I'll bet that copy and paste suggestion is looking better all the time :)
You need to take account of capitalisation issues, multiple TLD, multiple domain, and multiple subdomain (including www and non-www issues, as well as widcard domains that resolve) issues and use a redirect for all cases except the one canonical form that you do want to be indexed.
The Google forum has been discussing indexing problems caused by "Duplicate Content" for at least three years.
The Apache forum has been posting fixes for Duplicate Content issues for about the same length of time.
Don't rely on meta tags. Get the job done at the server level at the request phase, way before any content is going to be served.