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.