diff options
author | ot <ot@localhost> | 2007-07-26 03:57:43 +0000 |
---|---|---|
committer | ot <ot@localhost> | 2007-07-26 03:57:43 +0000 |
commit | 41bf4f0548a5a03495e7fcc88ecdfd1d0aec5762 (patch) | |
tree | 1ca606ac21bd7e75c146f4da21acd935a43ab146 | |
parent | e7c23dc6450d21e9fdeccd8ccc4f0a6780a5db67 (diff) | |
download | markup-validator-41bf4f0548a5a03495e7fcc88ecdfd1d0aec5762.zip markup-validator-41bf4f0548a5a03495e7fcc88ecdfd1d0aec5762.tar.gz markup-validator-41bf4f0548a5a03495e7fcc88ecdfd1d0aec5762.tar.bz2 |
passing /check/referer to the mod_perl handler too
-rw-r--r-- | httpd/conf/httpd.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/httpd/conf/httpd.conf b/httpd/conf/httpd.conf index ee79680..c431566 100644 --- a/httpd/conf/httpd.conf +++ b/httpd/conf/httpd.conf @@ -13,7 +13,7 @@ # First, tell httpd that check and sendfeedback.pl are CGI scripts. -AliasMatch ^/+w3c-validator/+check$ /usr/local/validator/cgi-bin/check +AliasMatch ^/+w3c-validator/+check(/+referer)?$ /usr/local/validator/cgi-bin/check AliasMatch ^/+w3c-validator/+feedback(\.html)?$ /usr/local/validator/cgi-bin/sendfeedback.pl <IfDefine MODPERL2> @@ -21,7 +21,7 @@ AliasMatch ^/+w3c-validator/+feedback(\.html)?$ /usr/local/validator/cgi-bin/sen PerlSwitches -T </IfDefine> -<LocationMatch "^/+w3c-validator/+(check|feedback(\.html)?)$"> +<LocationMatch "^/+w3c-validator/+(check|feedback(\.html)?)"> Options +ExecCGI SetHandler cgi-script <IfDefine MODPERL2> |