Btw, i found a script wich has to be added on top of every php script, and it works, so you can now use links like index/id/3434 instead of index.php?id=3434
But, there is one problem,
when you view a page, all links and images dont work because the server thinks that they are in the DIRECTORY id/3434 ...
Can anyone change/modify this little snippet of code so it will work?
<?php
$HTTP_TEMP_PATH_VARS = explode("/",$PATH_INFO);
array_shift($HTTP_TEMP_PATH_VARS);
reset($HTTP_TEMP_PATH_VARS);
$HTTP_PATH_VARS = array();
while( list($index,$key) = each($HTTP_TEMP_PATH_VARS) ) {
list($index,$val) = each($HTTP_TEMP_PATH_VARS);
$HTTP_PATH_VARS[$key] = $val;
$$key = $val;
}
?>