From 8788406c5ab32f3eed6c771c4c6164873bac2b93 Mon Sep 17 00:00:00 2001 From: jrandom Date: Sun, 3 Oct 2004 14:59:37 +0000 Subject: [PATCH] pass through the i2pdb dir so we can seed off www.i2p.net/i2pdb (and, in turn, point i2p.net --> www.i2p.net) --- .htaccess | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.htaccess b/.htaccess index 87ec5bfb..c67629d8 100644 --- a/.htaccess +++ b/.htaccess @@ -1,4 +1,4 @@ -Options FollowSymLinks +Options FollowSymLinks Indexes # Various rewrite rules @@ -12,9 +12,10 @@ Options FollowSymLinks RewriteRule ^redesign(/(.*))? /$2 [redirect=302,last] # Rewrite URLs of the form 'index.php?page=x': - RewriteCond %{REQUEST_URI} !^/(images|pages|styles)/ + RewriteCond %{REQUEST_URI} !^/(images|pages|styles|i2pdb)/ RewriteCond %{REQUEST_URI} !^/favicon\.ico RewriteCond %{REQUEST_URI} !^/robots\.txt + RewriteCond %{REQUEST_URI} !^/i2pdb RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?page=$1 [L,QSA]