Page is a not externally linkable
double0seven - 3:05 pm on May 4, 2001 (gmt 0)
//This only works with apache module. array_shift($HTTP_TEMP_PATH_VARS); $HTTP_PATH_VARS = array(); while( list($index,$key) = each($HTTP_TEMP_PATH_VARS) ) { and still have access to $id and $this.
I understand that it is diffcult for engines to spider links with ? marks in the url. I found this piece of code awhile back and have known some folks to have some success with it.
$HTTP_TEMP_PATH_VARS = explode("/",$PATH_INFO);
reset($HTTP_TEMP_PATH_VARS);
list($index,$val) = each($HTTP_TEMP_PATH_VARS);
$val = urldecode($val);
$HTTP_PATH_VARS[$key] = $val;
$$key = $val;
}
?>
Example
Instead of 'http://www.server.com/page.php?id=14&this=that'
you may use 'http://www.server.com/page.php/id/14/this/that'