'Exclude all parameters domainwide in robots.txt

For my domain www.example.com I have following disallow rule in robots.txt file:

disallow: /?

I would like to disallow all parameters also for language subfolders (www.example.com/en/ , www.example.com/es/ , www.example.com/it/ , .....)

Should I add to robots.txt separate rules for all of these subfolder, ex.:

disallow: /en/?

disallow: /es/?

disallow: /it/?

or just define it as:

disallow: /*?*  

and this will work domainwide ?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source