If your file is called http://www.myspace/user.php and you want it to show as http://www.myspace/user Then you would put this content in a file called .htaccess in your root: RewriteOptions inherit RewriteEngine on RewriteRule ^user$ user.php [L] Code (markup): You can then access the page through either url.
Well.... I Can help you all If you want me to Rewrite the URLS Using Htaccess..! PLease dont touch Htaccess until and unless you know what you are doing..! And if you edit it simply for a fun, then BAMN its all over..!
See this URL, flib is a good friend of mine: (I can't post live links yet, please copy & paste into browser) http://www.askflib.com/article/making-friendly-urls
RewriteEngine on Options +FollowSymlinks RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^([^/]+)/? /file.php?user=$1 [L] this is what i came up with