Join Nostr
2025-09-17 16:51:47 UTC
in reply to

Bart Louwers on Nostr: In that particular example, yes. curl -v 2>&1 | grep '> GET' > GET / HTTP/2 curl -v ...

In that particular example, yes.

curl -v https://example.com/ 2>&1 | grep '> GET' 
> GET / HTTP/2
curl -v https://example.com 2>&1 | grep '> GET' 
> GET / HTTP/2

But:

curl -v https://example.com/about 2>&1 | grep '> GET'
> GET /about HTTP/2

curl -v https://example.com/about/ 2>&1 | grep '> GET'
> GET /about/ HTTP/2

And client-side routing can also make it show something different.