When a CSS is called from a browser, Rails combined all CSS files into one:
all.css?random-section-id-number (e.g. all.css?2342568659756352)
Each time it expires, the number changes.
I am sharing this CSS file with Wordpress, and I want Wordpress to call the same CSS so that it reduces the HTTP request. But if I put all.css, it will call a fresh CSS from Rails, result in redownloading the CSS file.
What do I do to have Wordpress to just used the cached CSS file with the same section-id?