hi, usually this works but now it doesn't <IfModule mod_rewrite.c> RewriteEngine On RewriteRule ^subfolderA/([a-zA-Z0-9_-]+).php$ subfolderA/index.php?content=$1 RewriteRule ^subfolderA/([a-zA-Z_-]+)/([a-zA-Z0-9_-]+).php$ subfolderA/index.php?content=$2 </IfModule> Code (markup): now when i surf to http://www.mydomain.com/subfolderA/hello.php and i echo $_REQUEST['content']; i get "index" and not hello???? What am i overlooking??