If you want to let my site's url looks like abc_cde-23.html, not 23/abc.html.
You'll need to edit myfunctions.ini.php about line 48:
Quote:
|
$return = $LINK_BASE . $id . '/' . $keywords . '/';
|
Change to your desired format. Possibly something like:
Quote:
|
$return = $LINK_BASE . $keywords . '-' . $id . '.html';
|
Also edit .htaccess line:
Quote:
|
RewriteRule ^([0-9]+)/.*$ index.php?go=subcat&id=$1 [L,NC]
|
Possibly something like:
Quote:
|
RewriteRule ^.*-([0-9]+).html$ index.php?go=subcat&id=$1 [L,NC]
|