تخدم صفحة الصيانة على الموقع، سوف تؤثر على فهرسة Google؟

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

  •  14-11-2019
  •  | 
  •  

سؤال

لا أعتقد أن هذه مشكلة، لكن شريكي قلق أنه من خلال خدمة صيانة فقط لمدة 24 ساعة (ونحن بحاجة إلى استعادة قاعدة البيانات كما تم حذفها عن طريق الخطأ) أنه قد يكون له تأثير سلبي على Googleمؤشر / تصنيف؟

هل كانت مفيدة؟

المحلول

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