( ) .
original domain and target domain.
I found the difference in the request header:
with error 403,
request header have one line:
Referer: http://original-domain/json2tree/ipfs/ipfsList.html
when I enter the URL 403 is denied, the request header does NOT have the above referrer lines: original-domain
I am finally figuring out how to fix this error !!!
on the web page of your source domain, you must add
<meta name="referrer" content="no-referrer" />
it will remove or prevent sending Referer in the header, works for both links and Ajax requests
hoogw source
share