Je voudrais faire un rewriting sur une url comme ceci
info-ville.php?nom_ville=$1&code_postal=$2
Dans mon .htaccess, j'ai écrit
Afin d'obtenir une url comme ça
foix-09000.html
mais cela ne fonctionne pas, pourriez vous me proposez une solution chez OVH ?
Merci bien
info-ville.php?nom_ville=$1&code_postal=$2
Dans mon .htaccess, j'ai écrit
Code:
RewriteEngine on
RewriteRule ^(.*)-([0-9]+).html$ /info-ville.php?nom_ville=$1&code_postal=$2 [L]
Afin d'obtenir une url comme ça
foix-09000.html
mais cela ne fonctionne pas, pourriez vous me proposez une solution chez OVH ?
Merci bien