2012-08-10 2 views
0

Google 웹 마스터 계정을 설정하고 웹 사이트를 확인한 후에 사이트 맵을 추가하지 못했습니다. 다음 오류가 발생했습니다.Google 웹 마스터가 내 Sitemap을 수락하지 않습니다.

  1. 내가 robots.txt를 제거하고 여전히 작동하지 않았다

    enter image description here

    나는 다음을 수행하려고 노력했다.
  2. http://www.validome.org/google/validate에 내 사이트 맵을 확인하려고했는데 유효한 것으로보고되었습니다.
  3. 사이트 맵과 URL을 여러 번 확인하고 모든 것이 정상적으로 처리 된 것으로 보입니다. 참조를 들어

은 다음과

내 sitemap.xml의가 될 때 :은 다음과

<?xml version="1.0" encoding="UTF-8"?> 
<urlset 
     xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" 
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
     xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 
      http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"> 
<url> 
    <loc>http://www.myDomain.com/</loc> 
    <changefreq>daily</changefreq> 
    <priority>1.00</priority> 
</url> 
<url> 
    <loc>http://www.myDomain.com/about/</loc> 
    <changefreq>daily</changefreq> 
    <priority>0.90</priority> 
</url> 
<url> 
    <loc>http://www.myDomain.com/help.php</loc> 
    <changefreq>daily</changefreq> 
    <priority>0.90</priority> 
</url> 
</urlset> 

내 Robots.txt를 그대로 :

User-agent: ia_archiver 
Disallow:/

User-agent: duggmirror 
Disallow:/

User-agent: * 
Disallow: /cgi-bin/ 

Sitemap: http://www.myDomain.com/sitemap.xml 

답변

0

http://www.widexl.com/tutorials/htaccess.html

그것은 문제가 Google 서버에서였다 밝혀졌다. 나는 아무것도 바꾸지 않았고, 단지 일주일 동안 전체 주제를두고 다시 시도했다. 모든 것이 이제는 잘 작동하는 것 같습니다.

때때로 중요한 업데이트 또는 Google 사용량이 많은 서버 때문에 사이트 맵을 수용하는 데 평소보다 시간이 오래 걸립니다. 비슷한 문제에 직면 한 사람들을 위해 며칠을 기다린 다음 Google 포럼 등에서 불평하기 전에 다시 한 번 시도해보십시오.

0

하는 경우 너는 뭔가를 원해.

  • 이 하나 robots.txt 파일 규칙을 바꾸기 :

    User-agent: * 
    Allow:/
    Sitemap: http://www.myDomain.com/sitemap.xml 
    
  • 을 그리고

    #Block ia_archiver & duggmirror 
        RewriteCond %{HTTP_USER_AGENT} .*.ia_archiver|duggmirror* [NC] 
        RewriteRule .* - [F] 
    
    
    #Block cgi access 
        <filesMatch "^php5?\.(ini|cgi)$"> 
         Order Deny,Allow 
         Deny from All 
         Allow from env=REDIRECT_STATUS 
        </filesMatch> 
    
  • 여기
+0

거기에 좋은 메모를 언급했습니다. 감사합니다 – CompilingCyborg

1

은 당신의 .htaccess이 추가 당신의 필요에 효과적 Y bot에 대한 htaccess 규칙 문제에 대한 좋은 참고 자료 :

http://www.howtoforge.com/forums/showthread.php?t=27809

+0

당신의 대답에 감사드립니다. 나는 당신이 무슨 뜻인지 잘 모르겠다. 내 htaccess에 문제가 있다는 뜻입니까? 전에이 문제에 직면 했습니까? 네가 약간 정교 할 수 있다면 기쁠거야. – CompilingCyborg

관련 문제