RE: Permanent re-direct

2000-10-31 Thread John Markunas
, October 30, 2000 4:24 PM To: [EMAIL PROTECTED] Subject: Re: Permanent re-direct Invalid command 'RedirectPermanent' perhaps mis-spelled or defined by a module not included in the server configuration. What am I doing wrong ? Do you have the "mod_alias" module? It's part o

Re: Permanent re-direct

2000-10-31 Thread Dave Paris
Before blindly screaming "It's broken!", think about *why* you need suexec first. If you aren't going to use it, then don't bother enabling it. I run configurations with a heavily modified (for values, not for additional defines or typedefs) apache_[ver]/src/include/httpd.h. These typically

RE: Permanent re-direct

2000-10-31 Thread Biggs, Jody
RedirectMatch (.*) https://my-server$1 - Jody Biggs -Original Message- From: John Markunas [mailto:[EMAIL PROTECTED]] Sent: Monday, October 30, 2000 11:43 AM To: [EMAIL PROTECTED] Subject: Permanent re-direct Hello What Apache directive do I use to make http://my

Permanent re-direct

2000-10-30 Thread John Markunas
Hello What Apache directive do I use to make http://my-server always go to https://my-server Thank You John Markunas __ Apache Interface to OpenSSL (mod_ssl) www.modssl.org

Re: Permanent re-direct

2000-10-30 Thread Martin A. Marques
On Lun 30 Oct 2000 16:42, you wrote: Hello What Apache directive do I use to make http://my-server always go to https://my-server I'm not sure how you could prepend this to all your http files... Other wise add these lines to all your pages: SCRIPT

Re: Permanent re-direct

2000-10-30 Thread Martin Lichtin
What Apache directive do I use to make http://my-server always go to https://my-server This should work: VirtualHost _default_:80 RedirectPermanent / https://my-server/ /VirtualHost __

RE: Permanent re-direct

2000-10-30 Thread John Markunas
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Martin Lichtin Sent: Monday, October 30, 2000 2:50 PM To: [EMAIL PROTECTED] Subject: Re: Permanent re-direct What Apache directive do I use to make http://my-server always go

Re: Permanent re-direct

2000-10-30 Thread Martin Lichtin
Invalid command 'RedirectPermanent' perhaps mis-spelled or defined by a module not included in the server configuration. What am I doing wrong ? Do you have the "mod_alias" module? It's part of the base configuration: http://www.apache.org/docs/mod/mod_alias.html Run "httpd -l" to see what

RE: Permanent re-direct

2000-10-30 Thread Kirk Benson
RedirectPermanent is implemented by mod_alias, so you need to activate mod_alias. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of John Markunas Sent: Monday, October 30, 2000 4:15 PM To: [EMAIL PROTECTED] Subject: RE: Permanent re-direct Hello