]> granicus.if.org Git - apache/commitdiff
Fix PR#4720
authorRalf S. Engelschall <rse@apache.org>
Fri, 30 Jul 1999 09:51:01 +0000 (09:51 +0000)
committerRalf S. Engelschall <rse@apache.org>
Fri, 30 Jul 1999 09:51:01 +0000 (09:51 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83537 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/misc/howto.html

index 88c182355ef73c5abc7b86129133599b16eebb8c..9ce92a41baf2d47c991a523434467216c714206c 100644 (file)
@@ -85,8 +85,9 @@ and here's a simple perl script to redirect requests:
 <BLOCKQUOTE><PRE>
 #!/usr/local/bin/perl
 
-print "Status: 302 Moved Temporarily\r
-Location: http://www.some.where.else.com/\r\n\r\n";
+print "Status: 302 Moved Temporarily\r\n" .
+      "Location: http://www.some.where.else.com/\r\n" .
+      "\r\n";
 
 </PRE></BLOCKQUOTE></P>