redirects to same Product info page.

In /catalog/includes/classes/seo.class.php
Under function ValidateName

Find:
if ((strpos($parts[count($parts) - 2], $type)) !== FALSE)

Replace with:
if ($parts[count($parts) - 2] == $type)

More...