so i made a Golang api that gives me random image each time i make request to /image
and it's working fine on my machine
when i hosted it on serv00.com
once the image loads it never change when i opened network tab i got 304 Not Modified
so i knew problem is from nginx when i added .htaccess to my domain and added tthis code
`
<filesmatch "\.(jpg|jpeg|png|gif|ico)$">
Header set Cache-Control "max-age=0, private, must-revalidate"
</filesmatch>
<IfModule mod_headers.c>
Header set Cache-Control "no-cache, no-store, must-revalidate"
Header set Pragma "no-cache"
Header set Expires 0
</IfModule>
` still getting same problem