Tell me more ×
Webmasters Stack Exchange is a question and answer site for pro webmasters. It's 100% free, no registration required.

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

share|improve this question

closed as not constructive by John Conde Jan 7 at 11:45

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.