Hi guys, I need to get this URL RewriteRule setup I have a page named 'abc.php' which lies under a folder named 'xyz'. The abc.php is passed a URL that can contains any number of parameters and URL valid characters including /:&?= etc. for example.. http://www.domain.com/xyz/abc.php?url=www.anotherdomain.com/page.php?i=123123&u=sample The parameter in this case is www.anotherdomain.com/page.php?i=123123&u=sample , its what i need to pass over to the abc.php I want to rewrite this as a rule under htaccess so that it works like... http://www.domain.com/img/www.anotherdomain.com/page.php?i=123123&u=sample I have tried the following which works somewhat, RewriteRule ^img/(.*)$ /xyz/abc.php?url=$1 [L] however passes only the following to the abc.php script.... www.anotherdomain.com/page.php , and not the the parameters ?i=123123&u=sample , which are removed completely. I'd be thankful and will give my services as a courtesy gift to anyone that helps me out with this.... Awaiting..