how to translate http://mydomain.com/?aaa=asdf&bbb=qwerty to http://mydomain.com/directory/file.php?ccc=asdf&ddd=qwerty with htaccess but the rewrite rule will not effect other variable http://mydomain.com/?eee=1234&fff=5678 thanks for helping...
Why bother changing the URL if it's not going to be static!! Options +FollowSymLinks +Indexes RewriteEngine on RewriteBase / RewriteRule ^directory/file.php([^.]+)$ file.php([^.]+) [L]