My ISP told me that wordpress rewrited the different url.
It is a problem because i need to rewrite them based on the different languages.
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.exemple1.fr$
RewriteCond %{REQUEST_URI} !^/fr/
RewriteRule (.*) /fr/$1
RewriteCond %{HTTP_HOST} ^www.exemple2.be$
RewriteCond %{REQUEST_URI} !^/it/
RewriteRule (.*) /it/$1