HTTP Header response code -
i installed plugin on wordpress website redirect missing pages homepage. plugin seems working ok header response code redirected page 202. shouldn't 301?
from the docs:
10.2.3 202 accepted
the request has been accepted processing, processing has not been completed. request might or might not acted upon, might disallowed when processing takes place. there no facility re-sending status code asynchronous operation such this.
the 202 response intentionally non-committal. purpose allow server accept request other process (perhaps batch-oriented process run once per day) without requiring user agent's connection server persist until process completed. entity returned response should include indication of request's current status , either pointer status monitor or estimate of when user can expect request fulfilled.
the core of message in first sentence:
the request has been accepted processing, processing has not been completed
and indeed you're right - not correct response code scenario! 301 better fit , welcome submit bug writers of plugin.
Comments
Post a Comment