[PHP] Re: redirecting a domain

2003-03-27 Thread Dan
On Fri, 14 Jul 2000 22:26:05 -0400, [EMAIL PROTECTED] (Unknown Sender) wrote: I have an apache question and I have NO idea where to post it. Is there a newsgroup or mailing list simply for apache? I have multipal domain names: domain.net domain.org. I would like to configure apache such that

Re: [PHP] Re: redirecting a domain

2003-03-27 Thread Jason Sheets
Rather than redirecting to a seperate HTML file you can also use the PHP Header command, something like: ?php if (strstr($_SERVER['HTTP_HOST'], 'domain.org')) { header('Location: http://www.domain.net'); exit; } ? Dan wrote: On Fri, 14 Jul 2000 22:26:05 -0400, [EMAIL PROTECTED]

Re: [PHP] Re: redirecting a domain

2003-03-27 Thread Jason Wong
On Thursday 27 March 2003 07:25, Dan wrote: On Fri, 14 Jul 2000 22:26:05 -0400, [EMAIL PROTECTED] (Unknown Sender) wrote: I have an apache question and I have NO idea where to post it. Is there a newsgroup or mailing list simply for apache? I have multipal domain names: domain.net