
06-07-2007, 12:59 PM
|
 |
PHP GURU
|
|
Join Date: May 2005
Posts: 281
|
|
You'll need to edit myfunctions.ini.php about line 48:
PHP Code:
$return = $LINK_BASE . $id . '/' . $keywords . '/';
Change to your desired format. Possibly something like:
PHP Code:
$return = $LINK_BASE . $keywords . '_' . $id . '.html';
Also edit .htaccess line:
PHP Code:
RewriteRule ^([0-9]+)/.*$ index.php?go=subcat&id=$1 [L,NC]
Possibly something like:
PHP Code:
RewriteRule ^.*_([0-9]+).html$ index.php?go=subcat&id=$1 [L,NC]
If there are any conflicts with the new format and other files existing on your website, you will need to account for them.
Last edited by hdpinn : 06-11-2007 at 03:31 PM.
|