From 75c5b92629eab225ffb2a200b0e869d200fe8d6c Mon Sep 17 00:00:00 2001 From: Frank Lichtenheld Date: Mon, 12 May 2008 01:37:59 +0200 Subject: [PATCH] apache.conf: Use redirects for short URLs The short search URLs previously used [PT], making it appear as if these are canonical locations. They are not. Always redirect to /search first. --- conf/apache.conf.sed.in | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/conf/apache.conf.sed.in b/conf/apache.conf.sed.in index eba6664..2740248 100644 --- a/conf/apache.conf.sed.in +++ b/conf/apache.conf.sed.in @@ -113,11 +113,14 @@ RewriteRule ^/favicon.ico$ - [L] # RewriteRule ^/$ http://www.debian.org/distrib/packages - RewriteRule ^/$ /index.html [L] - RewriteRule ^/([^/+]*)([+])([^/]*)$ "/$1%%{%}2B$3" [N] - RewriteRule ^/changelog:(.+)$ http://%SITE%/changelogs/${changelog-url:$1} [R,L,NE] - RewriteRule ^/src:([^/]+)$ /source/$1 [R,L,NE] - RewriteRule ^/file:(.+)$ http://%SITE%/search?searchon=contents&keywords=$1 [R,L,NE] + RewriteRule ^/$ /index.html [L] + RewriteRule ^/([^/+]*)([+])([^/]*)$ "/$1%%{%}2B$3" [N] + RewriteRule ^/changelog:(.+)$ http://%SITE%/changelogs/${changelog-url:$1} [R,L,NE] + RewriteRule ^/src:([^/]+)$ http://%SITE%/search?searchon=sourcenames&keywords=$1 [R,L,NE] + RewriteRule ^/file:(.+)$ http://%SITE%/search?searchon=contents&keywords=$1 [R,L,NE] + RewriteCond %{REQUEST_URI} !^/search$ [OR] + RewriteCond %{QUERY_STRING} ^$ + RewriteRule ^/([^/]+)$ http://%SITE%/search?keywords=$1 [R,L,NE] RewriteCond %{QUERY_STRING} ="" RewriteCond %TOPDIR%/www%{REQUEST_FILENAME} -f [OR] -- 2.39.2