users@httpd.apache.org
Objet : [EMAIL PROTECTED] how to re-read the configuration without restarting
apache
hello,
I need to add these 2 lines to my conf file:
RewriteEngine On
RewriteRule ^/(OpenObject.*) http://server2:9000/$1
the http service is critical and cannot kill sessions.
Is there a way to reloa
thanks.
___
Yahoo! Answers - Got a question? Someone out there knows the answer. Try it
now.
http://uk.answers.yahoo.com/
-
The official User-To-User support forum o
On Thu, Dec 20, 2007 at 11:40:02AM +, Melanie Pfefer wrote:
> the http service is critical and cannot kill sessions.
> Is there a way to reload the configuration without
> restarting apache?
apachectl -h
Usage: /data/custom-apaches/apache-2.0.61/bin/httpd \
[-D name] [-d directory] [-f file
> I need to add these 2 lines to my conf file:
>
> RewriteEngine On
> RewriteRule ^/(OpenObject.*) http://server2:9000/$1
Melanie, you should alter the latter line (above) to
RewriteRule ^/(OpenObject.*) http://server2:9000/$1 [R=301,L]
This way, browsers are able to cache the request (R=301) a
Hi,
Melanie Pfefer wrote:
> hello,
>
> I need to add these 2 lines to my conf file:
>
> RewriteEngine On
> RewriteRule ^/(OpenObject.*) http://server2:9000/$1
>
>
> the http service is critical and cannot kill sessions.
> Is there a way to reload the configuration without
> restarting apache?
hello,
I need to add these 2 lines to my conf file:
RewriteEngine On
RewriteRule ^/(OpenObject.*) http://server2:9000/$1
the http service is critical and cannot kill sessions.
Is there a way to reload the configuration without
restarting apache?
thanks.