Apache url rewriting and loop
setting url rewriting to have nice urls, i have existing urls like that : /xxx/test.php but in the background, it is allways going to the same script with a query : /xxx/index.php?id=test with the following rewrite : RewriteRule ^xxx/([0-9a-z-]*).php$ /xxx/index.php?id=$1…