I know this question has been asked and answered many times, but my experience of .htaccess, regualr expressions, mod rewrites etc.. have normally drove me crazy.
I see on most websites the structure of the url is in a directory-like structure, wwww.linku.biz/edit
. My ultimate question is how do you do this?
Are all these sites behind the scenes have normal URL variables but just re-wrote? such as www.linku.biz/myprofile?edit="whatever"
, is this all done with .htaccess, and mod_rewrites?
I want to type in my url
www.linku.biz/search
however its actuallywww.linku.biz/search.php
I want to type in my url
www.linku.biz/JackTrow
however its actuallywww.linku.biz/profile.php?us="JackTrow
Also I want data re-wrote when I have lots of URL data, such as
www.linku.biz/search?a=1&b=2&c=3
actually beeingwww.linku.biz/search.php?a=1&b=2&c=3