Hi, there: I am setting a rewrite rule which I hope can transfer request-URLs like: http://mysite.com/?hello into http://mysite.com/lib/doc/hello.html Now I am using the following RewriteCond and RewriteRule: RewriteEngine on RewriteCond %{QUERY_STRING} !^$ RewriteRule ^/$ /lib/doc/%{QUERY_STRING}.html? [R,L] It worked but the result is an external redirection, the URL displayed in my browser becomes the redirected url(i.e. http://mysite.com/lib/doc/hello.html).. I am hoping to do an internal redirection which I hope the url in my browser keeps the original one, like:http://mysite.com/?hello I changed the third line into the following: RewriteRule ^/$ /lib/doc/%{QUERY_STRING}.html? [L] But it is not working? Can someone give me some suggestions on how to fix this problem? I am using: Apache/2.0.55, Ubuntu 6.06. Thank you very much. Lihao --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx " from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx