웹 사이트에서 유지 보수 페이지를 제공하면 Google 인덱싱에 영향을 미칩니 까?

StackOverflow https://stackoverflow.com/questions/9024909

  •  14-11-2019
  •  | 
  •  

문제

이것은 이것이 문제라고 생각하지 않지만 내 파트너는 우리의 Google에 부정적인 영향을 미칠 수있는 24 시간 동안 유지 보수 페이지 만 제공하는 것만 큼 걱정됩니다.색인 / 등급?

도움이 되었습니까?

해결책

I would follow Google’s recommendations on blacking out your website to protest SOPA. Specifically:

  1. Return a 503 Service Unavailable status code for pages which are unavailable.
  2. Make sure that robots.txt does not return a 503 status code.

다른 팁

I believe the best way to deal with this is throwing an error code 503 Service Unavailable and use a custom error document to style it more friendly.

You could exclude it from crawlers like Google's by using a robots.txt file in the root of the site for that 24 hour period.

to be sure that there are no problems, you should serve your page using the 503 Service Temporarily Unavailable status. Retry-After can also be set, but i am not sure if the google crawlers care about that.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top