Fixed omitted TeX metatext.
[www.jankratochvil.net.git] / Index.pm
index 576b2de..6a82f5b 100644 (file)
--- a/Index.pm
+++ b/Index.pm
@@ -24,22 +24,15 @@ use strict;
 use warnings;
 
 use My::Web;
-use Apache2::Const qw(HTTP_MOVED_TEMPORARILY);
+use Apache2::Const qw(HTTP_MOVED_PERMANENTLY);
 
 
-our $HTML_TEST=0;
+our $HTML_TEST="download";
+our $HTML_TEST_RC=HTTP_MOVED_PERMANENTLY;
 
 sub handler
 {
-my $W=My::Web->init(
-               "header_only"=>1,
-               );
-
-
-$W->{"r"}->status(HTTP_MOVED_TEMPORARILY);
-$W->{"r"}->headers_out()->{"Location"}="http://".$W->{"web_hostname"}."/project/";
-
-
-exit 0;
+my $W=My::Web->init();
+My::Web->http_moved("./project/",HTTP_MOVED_PERMANENTLY);
 }
 1;