From 040a1cae85dfe960edd94b38ecf7abdbad57891b Mon Sep 17 00:00:00 2001 From: "Ralf S. Engelschall" Date: Fri, 30 Jul 1999 09:51:01 +0000 Subject: [PATCH] Fix PR#4720 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83537 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/misc/howto.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/manual/misc/howto.html b/docs/manual/misc/howto.html index 88c182355e..9ce92a41ba 100644 --- a/docs/manual/misc/howto.html +++ b/docs/manual/misc/howto.html @@ -85,8 +85,9 @@ and here's a simple perl script to redirect requests:
 #!/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";
 
 

-- 2.40.0