Hey,
I was wondering if it be possible for anyone to help me out with .htaccess
I am trying to make somthing for example
add?user=chris
As the URL Shown,
And the url it covering up somthing like
add.php?user=chris
Thank you,
Printable View
Hey,
I was wondering if it be possible for anyone to help me out with .htaccess
I am trying to make somthing for example
add?user=chris
As the URL Shown,
And the url it covering up somthing like
add.php?user=chris
Thank you,
Here is how to make it
www.yourdomain.com/add/username
That will be what add.php?user=username does with a nice friendly url.HTML Code:
RewriteEngine on
RewriteRule ^add/([A-Za-z0-9-]+)/?$ add.php?username=$1 [L]
Hope it helps.
Thank you very much,
I will +REP you but i have no rep power
If i ever get some rep power, i shall rep you in the future
Il rep him for you :)
Glad I could help.