
05-30-2007, 11:44 AM
|
 |
PHP GURU
|
|
Join Date: May 2005
Posts: 279
|
|
You'd need to modify include/myfunctions.ini about line 44:
PHP Code:
if($settings['seoUrl'] == 'Yes'){
if($go == 'detail') {
return $keywords . '-' . $go . '-' . $id . '.html';
} else {
$return = $LINK_BASE . $id . '/' . $keywords . '/';
if ($page > '0') {
$return .= $page . '/';
}
return $return;
}
// return $keywords.'-'.$go.'-'.$id.'.html';
}
I would still include the detail and id in the new link, so it would be
-johns-shop-of-things-detail-2.html
including detail and the id will make it easier to configure htaccess, which you will also need to modify to work with the new url.
|