well this is strange : if I put the rewrites in this order :
RewriteRule ^/?$ /index\.php?t=in&p_id=1 [NC]
RewriteRule ^accueil$ index\.php?t=in&p_id=1 [NC]
RewriteRule ^p/(.*)$ index\.php?t=p&p_id=$1 [NC]
RewriteRule ^hebergeurs/(.*)$ index\.php?t=he&p_id=$1 [NC]
RewriteRule ^vignerons/(.*)$ index\.php?t=vi&p_id=$1 [NC]
RewriteRule ^actualites/(.*)$ index\.php?t=ac&p_id=$1 [NC]
RewriteRule ^amis/(.*)$ index\.php?t=am&p_id=$1 [NC]
it doesn't work, but if I put them in this order :
RewriteRule ^accueil$ index\.php?t=in&p_id=1 [NC]
RewriteRule ^p/(.*)$ index\.php?t=p&p_id=$1 [NC]
RewriteRule ^hebergeurs/(.*)$ index\.php?t=he&p_id=$1 [NC]
RewriteRule ^vignerons/(.*)$ index\.php?t=vi&p_id=$1 [NC]
RewriteRule ^actualites/(.*)$ index\.php?t=ac&p_id=$1 [NC]
RewriteRule ^amis/(.*)$ index\.php?t=am&p_id=$1 [NC]
RewriteRule ^/?$ /index\.php?t=in&p_id=1 [NC]
it DOES work !!
wonders why that should be ...
I guess this is resolved but I wish I knew why
thanks for your help bradgrafelman 🙂