You can try using a PHP code and a database. With PHP you will be able to create an special link for each item with a single line of code:
echo '<a href="specificpage.php?id='.$id.'">See More About This Item</a>';
The linked result will be different as the
id value changes.
And you dont need to create a different page for each product, just one that will use the linked
id. This would be the code for such a file:
<?php
extract($_GET);
$dbTable=mysql_query("SELECT * FROM databaseName WHERE ID='$id'");
$rowWithProductInfo=mysql_fetch_array($dbTable);
extract($rowWithProductInfo);
echo $ID;
echo $NAME;
echo $FULL_DESCRIPTION;
?>
This is an example of using PHP with a MySQL database. HTH.