I want to know how you can do: www.site.com/username instead of www.site.con/username?=myusername.
Are there any reources or techniques to achieve this?
Thanks!
Jules
I want to know how you can do: www.site.com/username instead of www.site.con/username?=myusername.
Are there any reources or techniques to achieve this?
Thanks!
Jules
If you are using apache server you can edit httpd.config file to rewrite URL. Below is a sample rule to rewrite URL.(not an exact solution)
#With mod_rewrite
RewriteEngine on
RewriteRule "^/(.+)" "http://example.com/username?usernameVaribale=$1" [R,L]
you can read more about URL rewriting in apache server here