J'ai un gros problème avec l'URL Rewriting...
Je veux faire un nouvel URL Rewritting qui me réécrit v3_beta_cocoa_powa.html en index.php?v3=cocoa_powa ... Mon code est:
Code
RewriteRule ^v3_beta_cocoa_powa\.html$ index.php?v3=cocoa_powa [L]
Sachant que j'ai aucun URL Rewriting précédent qui a un flag L et qui a la bonne condition...
En fait mon code est:
Code
#début du .htaccess
RewriteEngine on
RewriteRule ^index\.html(.*)$ index.php$1 [L]
RewriteRule ^search-(.+)$ search.php?query=$1 [L]
RewriteRule ^([a-z]{2,2})/app/([a-z1-9]+)/([a-z1-9]+)\.html$ app.php?l=$1&app=$2&p=$3 [L]
RewriteRule ^v3_beta_cocoa_powa\.html$ index.php?v3=cocoa_powa [L]
RewriteEngine on
RewriteRule ^index\.html(.*)$ index.php$1 [L]
RewriteRule ^search-(.+)$ search.php?query=$1 [L]
RewriteRule ^([a-z]{2,2})/app/([a-z1-9]+)/([a-z1-9]+)\.html$ app.php?l=$1&app=$2&p=$3 [L]
RewriteRule ^v3_beta_cocoa_powa\.html$ index.php?v3=cocoa_powa [L]
Je ne vois pas, j'ai peut être fait une erreur monstrueuse mais je vois vraiment pas...