ترويسات HTTP الشائعة

ترويسات HTTP هي أزواج مفتاح-قيمة تُرسل في بداية كل طلب واستجابة. تحمل بيانات وصفية مثل نوع المحتوى وقواعد التخزين المؤقت والمصادقة. استخدم هذه الورقة للتعرف على الترويسات الأكثر شيوعًا عند بناء أو تصحيح حركة مرور الويب.

آخر تحديث:

الترويسةالاتجاهالغرض
HostrequestIdentifies the server's host and port (from the URL).
User-AgentrequestReports the client software (browser, OS, bot) making the request.
AcceptrequestLists the response media types (MIME) the client can handle.
AuthorizationrequestCarries credentials (token, Basic auth) to authenticate the client.
Content-Typerequest/responseStates the media type of the request or response body.
Content-Lengthrequest/responseGives the size in bytes of the request or response body.
CookierequestSends stored key/value pairs from a previous response back to the server.
Set-CookieresponseServer instructs the client to store a cookie for later requests.
Cache-Controlrequest/responseDirects caching behaviour: no-cache, max-age, private, etc.
ETagresponseOpaque identifier for a resource version, used for revalidation.
If-None-MatchrequestSends an ETag; server returns 304 if the resource is unchanged.
LocationresponsePoints the client to a new URL for redirects (3xx) or created resources.
Access-Control-Allow-OriginresponsePermits a browser to share a response across origins (CORS).
X-Forwarded-ForrequestRecords the client IP as seen through a proxy or load balancer.
RefererrequestIndicates the URL of the page that linked to the requested resource.

ملاحظات

الأسئلة الشائعة

ما الفرق بين ترويسة الطلب وترويسة الاستجابة؟
ترويسات الطلب يرسلها العميل (المتصفح أو التطبيق) إلى الخادم؛ وترويسات الاستجابة يعيدها الخادم مع جوابه. بعضها مثل Content-Type يظهر على الجانبين.
هل أسماء ترويسات HTTP حساسة لحالة الأحرف؟
لا. بحسب المواصفة أسماء الترويسات غير حساسة لحالة الأحرف، فـ Content-Type وcontent-type متساويتان. صيغة Title-Case مجرد اصطلاح.
ماذا تفعل ترويسة Host؟
Host تخبر الخادم أي نطاق يستهدف الطلب. وهي إلزامية في HTTP/1.1 وتتيح لخادم واحد استضافة مواقع متعددة بالاسم.
كيف يعمل التخزين المؤقت مع الترويسات؟
يحدد Cache-Control المدة التي يمكن فيها تخزين الاستجابة، بينما تتيح ETag وIf-None-Match للعميل أن يسأل «هل تغير؟» ويتلقى 304 Not Modified خفيفًا.