è ancora indicizzato su google?
Ciao, datemi una dritta: come mai dopo aver trasferito il mio sito (Drupal 6.x) http : / / danzisiweb.xxxxxxx.org / sviluppo esso è ancora indicizzato su google? eppure nel robots.txt c'è:
#Aggiunto
User-agent: *
Crawl-delay: 10
Disallow: /
Disallow: /sviluppo
User-agent: *
Crawl-delay: 10
# Directories
Disallow: /includes/
Disallow: /misc/
Disallow: /modules/
Disallow: /modules/blog
Disallow: /modules/taxonomy/
Disallow: /modules/taxonomy/term/
Disallow: /profiles/
Disallow: /scripts/
Disallow: /site/
Disallow: /themes/
Mentre nel file index.php
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<html>
<head>
<title>Pagina di Cortesia - Danzisiweb</title>
<meta name="generator" content="ConText v0.96">
<meta http-equiv=Expires CONTENT='Sun, 21 Mar 2010 15:00:00 GMT'>
<meta http-equiv='content-type' content='text/html; charset=iso-8859-1'>
<meta http-equiv='imagetoolbar' content='no'>
<meta name='author' content='Danzisiweb Project Manager'>
<meta name='generator' content='ConText v0.9'>
<meta name='description' content='Site trasfered redirect danzisiweb.it'>
<meta name='keywords' content='Site trasfered danzisiweb.it'>
<meta name='robots' content='index,follow'>
<meta name='revisit-after' content='1 days'>
<meta name='resource-type' content='text/html'>
<meta name='distribution' content='Global'>
<meta name='copyright' content='Danzisiweb 2009'>
<meta name='rating' content='General'>
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
<p> </p>
<?php
$linkall = $_SERVER["PHP_SELF"].$_SERVER["QUERY_STRING"];
$replc = ereg_replace("/sviluppo", "", $linkall);
$redir = "<a href="http://danzisiweb.it"" rel="nofollow">http://danzisiweb.it"</a>.$replc;
Header("Location: ".$redir."");
die();
?>
<p> </p>
</body>
</html>
e nel file /sviluppo/index.php
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<html>
<head>
<title>Pagina di Cortesia</title>
<meta name="generator" content="ConText v0.96">
<META NAME="ROBOTS" CONTENT="INDEX,FOLLOW">
<meta http-equiv=Expires CONTENT='Sun, 21 Mar 2010 15:00:00 GMT'>
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
<p> </p>
<?php
Header("Location: <a href="http://danzisiweb.it"" rel="nofollow">http://danzisiweb.it"</a>);
die();
?>
<p> </p>
</body>
</html>
Ora il sito è danzisiweb.it
Argomenti:
- Accedi o registrati per inserire commenti.
Semplicemente perché devi fare un redirect 301 cioè permanente, tu hai fatto un semplcie redirect.
http://www.chromeos.eu