I have basically next issue. There is form looking test on the page. After execution i got something like this one http://www.whatever.com/form.php?test=domain.com or http://www.whatever.com/form.php?test=domain2.com etc.... I would like to remove ?test= from example above and replace with / so that i can get more clear thing like this one below: http://www.whatever.com/form.php/domain.com http://www.whatever.com/form.php/domain2.com
Options +FollowSymLinks RewriteEngine On RewriteRule ^form/(.*)$ form.php?test=$1 Code (markup): The code above will change URLs like http://www.whatever.com/form.php?test=domain.com to http://www.whatever.com/form/domain.com