I have an Apache with http2, and I have made a server push of files which I would like to save on browser cache, but it doesnt and I dont know why.
I have made the push with a php file, the following one.
header( 'Link: <'https://www.myweb.com/mypath'>;rel="preload";as="video"', FALSE );
From my point of view, the Server push is working, because I can see the requests to the server in the access_log, but I think that the files should be saved on the browser cache, but It doesnt.
I try to make a server push of a file, and after it, request this file and get it from cache (see on the Network console of Chrome "from cache").
Thanks