diff options
author | matthew <matthew> | 2007-05-18 18:55:34 +0000 |
---|---|---|
committer | matthew <matthew> | 2007-05-18 18:55:34 +0000 |
commit | 37d086ae98adf89f85ffd73521a38e8d8ed3b4a7 (patch) | |
tree | dccae38a0b9940dc51e4b3431fec88245bd4f8e6 | |
parent | d37e57c914357727daed6b4fafe3ef7b2096413f (diff) |
Try .xml endings.
-rw-r--r-- | conf/httpd.conf | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/conf/httpd.conf b/conf/httpd.conf index c2d97da18..e0181ee94 100644 --- a/conf/httpd.conf +++ b/conf/httpd.conf @@ -20,7 +20,7 @@ # Copyright (c) 2006 UK Citizens Online Democracy. All rights reserved. # Email: francis@mysociety.org; WWW: http://www.mysociety.org # -# $Id: httpd.conf,v 1.12 2007-05-16 17:47:41 matthew Exp $ +# $Id: httpd.conf,v 1.13 2007-05-18 18:55:34 matthew Exp $ DirectoryIndex index.cgi @@ -34,9 +34,13 @@ RewriteRule ^/[Pp]/([0-9A-Za-z]{16}).*$ /confirm.cgi?type=problem;token=$1 RewriteRule ^/[Qq]/([0-9A-Za-z]{16}).*$ /questionnaire.cgi?token=$1 RewriteRule ^/rss/([0-9]+)$ /rss.cgi?type=new_updates;id=$1 [QSA] +RewriteRule ^/rss/([0-9]+).xml$ /rss.cgi?type=new_updates;id=$1 [QSA] RewriteRule ^/rss/([0-9]+),([0-9]+)$ /rss.cgi?type=local_problems;x=$1;y=$2 [QSA] +RewriteRule ^/rss/([0-9]+),([0-9]+).xml$ /rss.cgi?type=local_problems;x=$1;y=$2 [QSA] RewriteRule ^/rss/([0-9]+),([0-9]+)/([0-9]+)$ /rss.cgi?type=local_problems;x=$1;y=$2;d=$3 [QSA] +RewriteRule ^/rss/([0-9]+),([0-9]+)/([0-9]+).xml$ /rss.cgi?type=local_problems;x=$1;y=$2;d=$3 [QSA] RewriteRule ^/rss/council/([0-9]+)$ /rss.cgi?type=council_problems;id=$1 [QSA] +RewriteRule ^/rss/council/([0-9]+).xml$ /rss.cgi?type=council_problems;id=$1 [QSA] RewriteRule ^/rss/problems$ /rss.cgi?type=new_problems [QSA] RewriteRule ^/report/([0-9]+)$ /?id=$1 [QSA] |