i would like to rewrite this url http://crliuh.net63.net/kaisheng/user.php?user=gugujiao into this http://crliuh.net63.net/gugujiao
so i put this things in my .htaccess
Options +Indexes
RewriteEngine on
RewriteBase /
RewriteRule ^(.*)\/?$ kaisheng/user.php?user=$1 [QSA,L]
it works for me when i type http://crliuh.net63.net/gugujiao and its show the content of http://crliuh.net63.net/kaisheng/user.php?user=gugujiao
but when i type http://crliuh.net63.net this url, its show (unrecognise user), which means http://crliuh.net63.net/kaisheng/user.php?user=
so, is there any solution?