Hello all i want to make, that user goes to directory:
www.myweb.com/invites/User
It would work as
www.myweb.com/invites/index.php?u=User
I tried something, but doesn't work.
Hello all i want to make, that user goes to directory:
www.myweb.com/invites/User
It would work as
www.myweb.com/invites/index.php?u=User
I tried something, but doesn't work.
In the folder invites
, create a .htaccess
file or use apache rewrite: http://httpd.apache.org/docs/current/mod/mod_rewrite.html
The rule is :
RewriteEngine On
RewriteRule ^(\w+)$ index.php?u=$1