que faites-vous avec
$stmt = mysqli_prepare($bdd, "SELECT adresse FROM groupes_index WHERE groupe LIKE ?");
mysqli_stmt_execute($stmt, [$_GET["Mot"]]);
et avec
SELECT adresse FROM groupe_index WHERE groupe LIKE 'airbag';
?
il faut utiliser QUERY_STRING pour manipuler ce qu'il y a après ?
exemple :
RewriteCond %{QUERY_STRING} (^|.*&)marque=MAMARQUE(&.*|$)
RewriteRule (.*)$ http://%{HTTP_HOST}/votreurl?marque=MANOUVELLEMARQUE [L,R=301]