Forum Moderators: open
Before it was just on the www.widgets.com.
Now www.widgets.co.uk redirected to www.widgets.com where the content resides.
Could it have been dropped because of this?
Some additional content was added to the site.
Could it have been dropped because it may have had too higher density of keywords? It didn't look to much to me.
The way the new content was made was that other sites content was rewritten. If the rewritten content was too similar to the original content from another site. Could this have been enough to be dropped.
Is it possible to find out why the site has been dropped?
Its in all the other main search engines.
If ammendments are made. What is the process to get back in?
Any advice welcome Thanks.
As far as getting back in, I'd start by changing any 302's to a 301. Then I'd write Google an email asking them why it is that a highschool kid cranking out spambots in his spare time is capable of writing code that accurately follows and indexes 302 redirects, but Google's team of PhD's can't.
Maybe if they get enough complaints from webmasters who are seeing their listings dissapear due to no fault of their own, they'll get off their butts and fix the problem.
It comes back:
HTTP/1.1 302 Object Moved
Location: [abcwidgets.com...]
Server: Microsoft-IIS/5.0
Content-Type: text/html
Content-Length: 146
This is a 302 and needs to be changed to a 301?
You'd change the script in the htaccess file to:
RewriteEngine On
RewriteRule .* [abc-widgets.com...] [R=301,L]
This code redirects requests for any resource on the www.abcwidgets.com domain to the home page of [abc-widgets.com...]
If you would rather redirect to the same page that was requested from www.abcwidgets.com, use:
RewriteEngine On
RewriteRule ^(.*)$ [abc-widgets.com...] [R=301,L]
[webmasterworld.com...]
Over the past couple of weeks, we have been getting many reports of sites getting dumped due to a 302 redirect being pointed at the site from another site.
i wonder how the 'plex reconciles this with the
viewpoint that nothing a third party does should
be able to hurt a site. almost anyone can put up
a disposable site with a 302 to a competitor.
+++
Get the version of Apache for Windows.
What? IIS is fine - criticisms of Windows may be deserved at times, but running Apache on Windows strikes me as being the worst of all worlds. You just need to know how to use IIS properly.
If you have access to Internet Services Manager, then you need to tick the box which says "this is a permanent redirect for this resource" in the home directory screen.
If not, you need to argue with your host, or put an asp page on the .co.uk site with the following code:
<%
Response.Status = "301 Moved Permanently"
Response.addheader "Location", "http://www.widgets.com"
Response.End
%>