summaryrefslogtreecommitdiff
path: root/docs/manual/misc/howto.html
diff options
context:
space:
mode:
authorKen Coar <coar@apache.org>1998-09-17 14:52:03 +0000
committerKen Coar <coar@apache.org>1998-09-17 14:52:03 +0000
commitdda1e03ed0054557de5a4093ba1613c519ecb12a (patch)
tree8e1aa48fb77c451638d86a291df60a5d8d3c025d /docs/manual/misc/howto.html
parent681f8e5fecdfea55b1b0ea55fa6a4699ada49b25 (diff)
downloadhttpd-dda1e03ed0054557de5a4093ba1613c519ecb12a.tar.gz
Some more consistency (cgi -> CGI) fixes, and shortened long lines.
(There are about 200 more >80 lines in the dos, but I haven't the time now to fix 'em. Oh well.) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@82069 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/misc/howto.html')
-rw-r--r--docs/manual/misc/howto.html10
1 files changed, 6 insertions, 4 deletions
diff --git a/docs/manual/misc/howto.html b/docs/manual/misc/howto.html
index 3137e871f5..980d4061aa 100644
--- a/docs/manual/misc/howto.html
+++ b/docs/manual/misc/howto.html
@@ -60,13 +60,14 @@ what they gave in the original URL, they'll be sent to
"http://www.apache.org".
The second option is to set up a <CODE>ScriptAlias</CODE> pointing to
-a <STRONG>cgi script</STRONG> which outputs a 301 or 302 status and the
+a <STRONG>CGI script</STRONG> which outputs a 301 or 302 status and the
location
of the other server.</P>
-<P>By using a <STRONG>cgi-script</STRONG> you can intercept various requests
+<P>By using a <STRONG>CGI script</STRONG> you can intercept various requests
and
-treat them specially, <EM>e.g.</EM>, you might want to intercept <STRONG>POST</STRONG>
+treat them specially, <EM>e.g.</EM>, you might want to intercept
+<STRONG>POST</STRONG>
requests, so that the client isn't redirected to a script on the other
server which expects POST information (a redirect will lose the POST
information.) You might also want to use a CGI script if you don't
@@ -108,7 +109,8 @@ characters.</P>
<P>The correct procedure is to move the logfile, then signal Apache to tell
it to reopen the logfiles.</P>
-<P>Apache is signaled using the <STRONG>SIGHUP</STRONG> (-1) signal. <EM>e.g.</EM>
+<P>Apache is signaled using the <STRONG>SIGHUP</STRONG> (-1) signal.
+<EM>e.g.</EM>
<BLOCKQUOTE><CODE>
mv access_log access_log.old<BR>
kill -1 `cat httpd.pid`