Forum Moderators: phranque
i have a url like this, "www.example.com/user/index.php?user=dani"
and i want to make this URL, looks like "www.name.example.com"
so can someone please tell me how to do this?
[edited by: engine at 11:26 am (utc) on Jan. 21, 2008]
[edit reason] examplified [/edit]
RewriteEngine on
RewriteRule ^user/signin/ /www.example.com/signin/index.php?Action=singnin
as this is simple redirection, and i am not facing any sort of issues in this, but i want to redirect something url
as i stated above.
that is i want to show user proile, and in my php coding i use this url to show user profile:
www.example.com/user/index.php?id=name
but now i want to remove all this? and index.php from my URL and i want it to be like this, www.name.example.com
where name is user name.
so plz do tell me the simplest way to achieve this functionality.
[edited by: engine at 11:27 am (utc) on Jan. 21, 2008]
[edit reason] examplified [/edit]