add_filter('the_permalink_rss', 'the_permalink_rss_edit');

function the_permalink_rss_edit($replace) {
$replace = str_replace('local', 'test', $replace);
return $replace;
};