I am using a seo function to generate clean urls :
$link = BASEURL.'/myword/'.$details['id'].'_'.SEO(clean(str_replace(' ','-',$details['title']))).$plist;
in my php file there's lines to do the rewrite and the redirection:
header ('HTTP/1.1 301 Moved Permanently');
header ('Location: '.$link);
in the .htaccess too there's a rewrite rule:
RewriteRule ^myid/([0-9]+)_(.*) file.php?id=$1&%{QUERY_STRING} [L]
this redirection average time is 250ms according to main measurement tools ,do you find the redirection time normal or high?is there a step to avoid or a better idea please thanks