On our website we have download links, e.g., zip files, that must not have a language prefix in the URL, but Cloudflare adds one.
E.g., on the site https://www.domain.com/fr/page.html
there is in our origin code
<a href="https://www.domain.com/sites/default/files/downloads/file.zip" download>file.zip</a>
After inspecting the URL from the website, the code looks like this:
<a href="/fr/sites/default/files/downloads/file.zip" download="">file.zip</a>
The domain https://www.domain.com
was removed, and the language prefix ‘/fr’ was added.
On our deployment server, this does not happen.
On Cloudflare we don’t have set any Transform rules.
How can we fix this problem?