Hi Guys, I need to use .htaccess hide the folder in url. original link is http://domain.com/folder/index.php?id=1 after using this: Options +FollowSymlinks RewriteEngine on RewriteRule ^forward-([0-9]+)$ index.php?id=$1 When I hit: http://domain.com/folder/forward-1 It will go to the original link, which is ok. But how can I hide the folder name? http://domain/com/forward-1 (and it will forward to the original link) Any helps appreciated thanks!