Here is my current .htaccess file: (it is running on my personal WAMP server. And Mod_Rewrite is enable on my server.)
<IfModule mod_rewrite.c>
   Options +FollowSymLinks
   Options +Indexes
   RewriteEngine On
   RewriteBase /rdypages/
   RewriteCond %{SCRIPT_FILENAME} !-f
   RewriteCond %{SCRIPT_FILENAME} !-d
   RewriteRule ^(.*)$ /rdypages/index.php?company=$1&page=$2
</IfModule>
My /rdypages/index.php file is design to look for the following parameters in the quesystring: company and page. Here is an example address:
http://localhost:8888/rdypages/index.php?company=test&page=test.htm
and this is what I would like it to look like:
http://localhost:8888/rdypages/test/test.htm
What should my .htaccess file's RewriteRule say? Thanks