通过curl命中时未加载CSS

通过curl命中时未加载CSS,curl,akamai,Curl,Akamai,我正在尝试使用curl命令获得特定的CSS,下面的命令可以很好地工作 >curl https://www.your-domain.com/general/style.css HTTP/1.1 200 OK Server: Apache X-Frame-Options: SAMEORIGIN Last-Modified: Sat, 28 Mar 2020 01:01:25 GMT 但当我尝试使用curl命令加载另一个css时: >curl https://www.your-doma

我正在尝试使用curl命令获得特定的CSS,下面的命令可以很好地工作

>curl https://www.your-domain.com/general/style.css

HTTP/1.1 200 OK
Server: Apache
X-Frame-Options: SAMEORIGIN
Last-Modified: Sat, 28 Mar 2020 01:01:25 GMT
但当我尝试使用curl命令加载另一个css时:

>curl https://www.your-domain.com/another/buz.css

HTTP/1.1 404 Not Found
Content-Type: text/html; charset=iso-8859-1
Content-Length: 216
Access-Control-Allow-Credentials: true
Cache-Control: max-age=1800
Expires: Sat, 10 Oct 2020 18:46:37 GMT
Date: Sat, 10 Oct 2020 18:16:37 GMT
Connection: keep-alive
Set-Cookie: disable-sac=on; path=/
Set-Cookie: dpp_cdc=off; path=/
Set-Cookie: dpp_drug_dir=off; path=/
Set-Cookie: dpp_sft=off; path=/
Set-Cookie: enable_imz=on; path=/
Set-Cookie: mc_hl7=on; path=/
Set-Cookie: rxm_rx_challenge=on; path=/
Set-Cookie: s2cHero_lean6=on; path=/
X-Req: allow-ca-ut,www.your-domain.com-ext_css
X-Frame-Options: SAMEORIGIN
Access-Control-Allow-Origin: www.your-domain.com
Strict-Transport-Security: max-age=31104000 ; includeSubDomains
第二条路由是
托管在不同的服务器上
,由
akamai
进行路由。正在设置重新定向到不同服务器的特定cookie。如果打开akamai,则路由到其他服务器

  • 我应该怎么做才能使第二个URL通过curl命令工作?