Re: [EMAIL PROTECTED] http to https redirection with an exception

2007-10-18 Thread Krist van Besien
On 10/18/07, joy d <[EMAIL PROTECTED]> wrote: > > > > Date: Wed, 17 Oct 2007 16:03:38 +0200 > > From: [EMAIL PROTECTED] > > > > If your apache was compiled with DSO support you don't need to > > recompile it. You can just compile mod_rewrite and load it in your > > config. > > > > Hello, > > How to

RE: [EMAIL PROTECTED] http to https redirection with an exception

2007-10-17 Thread joy d
> Date: Wed, 17 Oct 2007 16:03:38 +0200 > From: [EMAIL PROTECTED] > > If your apache was compiled with DSO support you don't need to > recompile it. You can just compile mod_rewrite and load it in your > config. > Hello, How to do it? can you show me a document reference? Actually we also have

Re: [EMAIL PROTECTED] http to https redirection with an exception

2007-10-17 Thread Krist van Besien
On 10/16/07, ImageCity/Hirotsuna Mizuno <[EMAIL PROTECTED]> wrote: > joy d wrote: > > You can use mod_rewrite and define a RewriteCond for the except case. > > Thank you for your appropriate advice. > > Unfortunately, our Apache server was compiled without mod_rewrite, and > it's not allowed to re-

Re: [EMAIL PROTECTED] http to https redirection with an exception

2007-10-15 Thread ImageCity/Hirotsuna Mizuno
Joshua Slive wrote: > Assuming you are using 2.x, you can use a negative-lookahead in the > regex to match exactly anything other than robots.txt. But the effect > will be the same. Thank you so much, that's just what I'm looking for. Following your advice, finally, I changed my httpd.conf like th

Re: [EMAIL PROTECTED] http to https redirection with an exception

2007-10-15 Thread Joshua Slive
On 10/15/07, ImageCity/Hirotsuna Mizuno <[EMAIL PROTECTED]> wrote: > joy d wrote: > > You can use mod_rewrite and define a RewriteCond for the except case. > > Thank you for your appropriate advice. > > Unfortunately, our Apache server was compiled without mod_rewrite, and > it's not allowed to re-

Re: [EMAIL PROTECTED] http to https redirection with an exception

2007-10-15 Thread ImageCity/Hirotsuna Mizuno
joy d wrote: > You can use mod_rewrite and define a RewriteCond for the except case. Thank you for your appropriate advice. Unfortunately, our Apache server was compiled without mod_rewrite, and it's not allowed to re-compile it. Therefore, the following way is our current candidate. RedirectM

RE: [EMAIL PROTECTED] http to https redirection with an exception

2007-10-14 Thread joy d
Hi, You can use mod_rewrite and define a RewriteCond for the except case. > Date: Mon, 15 Oct 2007 09:55:51 +0900 > From: [EMAIL PROTECTED] > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] http to https redirection with an exception > > Hi, all. > > I'm currently using the RedirectMatc