الحصول على رؤوس استجابة الموقع

جلب رؤوس استجابة HTTP لعنوان URL على الخادم (HEAD، وإذا لزم fallback إلى GET). العملية: إرسال HEAD، اتباع إعادة التوجيه، جمع الرؤوس، حظر المضيفات الداخلية. مثال: فحص CORS وCache-Control وHSTS لتصحيح إعادة التوجيه وإعدادات CDN.

النتيجة
الحالة:-
الرابط النهائي:-
الرؤوس:
-

ملاحظات

  • بعض المواقع لا تدعم HEAD ؛ سنعود إلى GET.
  • لحماية الأمان، يتم حظر الطلبات إلى localhost/الشبكات الخاصة.

ما هو: احصل على فحص رؤوس استجابة HTTP لموقع ويب. مفيد في تصحيح أخطاء CORS، والتخزين المؤقت، وإعادة التوجيه، والتحقق من رؤوس الأمان أو CDN. سيناريوهات: تصحيح المطورين، والتحقق من تحسين محركات البحث، والتحقق من تكوين الخادم.

Frequently asked questions

What do HTTP response headers show?

They show metadata from the server response such as content type, caching rules, redirects, and security policies like HSTS or CORS.

Does this tool download the full page body?

It prefers HEAD and falls back to GET when needed. The goal is inspecting headers, not scraping page content.

Why are localhost or private IPs blocked?

Requests to private networks are blocked for safety so the worker cannot be used to probe internal hosts.