RE: [PHP] implement yourname.mysite.com redirection

2002-02-18 Thread Rick Emery
] Subject: Re: [PHP] implement yourname.mysite.com redirection > You can also do this via a PHP script, which is what I do. I have 5 URLs > all going to the same site (500 megs disk space). I parse the subdomain, > and re-driect to the appropriate sub-directory. So do you have this code r

Re: [PHP] implement yourname.mysite.com redirection

2002-02-18 Thread Chris Lott
> You can also do this via a PHP script, which is what I do. I have 5 URLs > all going to the same site (500 megs disk space). I parse the subdomain, > and re-driect to the appropriate sub-directory. So do you have this code running on every page or does it only redirect from the index page or

RE: [PHP] implement yourname.mysite.com redirection

2002-02-18 Thread Rick Emery
You can also do this via a PHP script, which is what I do. I have 5 URLs all going to the same site (500 megs disk space). I parse the subdomain, and re-driect to the appropriate sub-directory. Actually, you don't even need to parse the URL for sub-domain. Just search for the "yourname.mysite.

Re: [PHP] implement yourname.mysite.com redirection

2002-02-18 Thread Jason G.
Hi, Look into mod_rewrite with Apache. We use it to capture www.univo.biz/yourname and display a page about you. However, my experience is very limited. I would imagine you could figure it out though. -Jason Garber IonZOft.com At 09:47 AM 2/18/2002 +, Adrian Murphy wrote: >Hi, >I'd like