I put some files in static directory and these files are keep updated by some back end processing. I used url_for()
to return url to client side.
But I found that even if I removed the old files from static directory and regenerate the updated files, it still display the content of old files on the client browser. I think the old file has been cached.
Does anyone know how to set no-cache for the url_for()
function?
Thanks in advance!