work with htaccess without change url

I have this htaccess\[code\]<IfModule mod_rewrite.c> RewriteEngine On RewriteRule ^(.*)$ dl.php?id=/$1 [QSA,L]</IfModule>\[/code\]it works perfect. I just have one problem, I insert my site urls and images like these \[code\]<img src="http://stackoverflow.com/questions/14551239/img/image.gif"><a href="http://stackoverflow.com/questions/14551239/do.php">\[/code\]its short url not full like\[code\]<a href="http://stackoverflow.com/questions/14551239/mysite.com/img/image.gif">\[/code\]so when now I open \[code\]127.0.0.1/dl.php/1/\[/code\] I can get\[code\]$_GET['id']\[/code\]But my links and images want to open from\[code\]http://127.0.0.1/dl.php/img/h.png\[/code\]but it must be \[code\]http://127.0.0.1/img/h.png\[/code\]can anyone help me with this? I can't change all urls in my site and make them full url. I have like 50 page and I want this htaccess just for \[code\]dl.php\[/code\] file
 
Back
Top