We have a server which has ScriptA.php, ScriptB.php and ScriptC.php which all contain text/images that are 80% similar.
We're using .htaccess to do url rewriting on ScriptC.php and we're noticing a performance slow down when it loads where it appears that the browser is loading the content afresh every time.
When I click on a link to ScriptB.php from www.example.com/ScriptA.php - there is hardly a noticable reload of the 80% common text/images when ScriptB.php is loading.
But when I click on a link to www.example.com/ScriptC.php/abcde-fghij-lmnop - the browser seems to reload the entire page which is a slow process.
Is that a known behavior? Is this a problem at the server end or the browser-end? How do I prevent this so that the user experience is smoother?