markup-validator commit: Escape dot in *-upload.html rewrite rule regexps.

changeset:   3215:086cd5c82567
user:        Ville Skyttä <ville.skytta@iki.fi>
date:        Sun Mar 13 12:35:39 2011 +0200
files:       httpd/conf/httpd.conf
description:
Escape dot in *-upload.html rewrite rule regexps.


diff -r 1a0d7586fd5d -r 086cd5c82567 httpd/conf/httpd.conf
--- a/httpd/conf/httpd.conf	Sat Mar 12 15:20:20 2011 +0200
+++ b/httpd/conf/httpd.conf	Sun Mar 13 12:35:39 2011 +0200
@@ -65,8 +65,8 @@
   <IfModule mod_rewrite.c>
   Options +SymLinksIfOwnerMatch
   RewriteBase /w3c-validator/
-  RewriteRule fragment-upload(.html)? detailed.html#validate-by-input [R,L,NE]
-  RewriteRule file-upload(.html)? detailed.html#validate-by-upload [R,L,NE]
+  RewriteRule fragment-upload(\.html)? detailed.html#validate-by-input [R,L,NE]
+  RewriteRule file-upload(\.html)? detailed.html#validate-by-upload [R,L,NE]
   </IfModule>
 
   <IfModule mod_expires.c>

Received on Sunday, 13 March 2011 11:12:08 UTC