solved ??
you have to add in functions.php of the theme a rule like:
function foo_bar_rewrite_rules($rules) {
global $wp_rewrite;
$newrules[‘cerca.htm$’] = ‘index.php?cerca’;
$newrules[‘profilo/(.+).htm$’] = ‘index.php?user=$matches[1]’;
return array_merge($newrules,$rules);
}
add_filter(‘rewrite_rules_array’,’foo_bar_rewrite_rules’);
update_option(‘rewrite_rules’, ”);
??