From ca9f8e31243427dadd064e1a6934397e804b664e Mon Sep 17 00:00:00 2001 From: James Vasile Date: Mon, 19 Dec 2011 09:04:29 -0500 Subject: [PATCH] redirect / and /plinth to /plinth/ --- share/apache2/plinth.conf | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/share/apache2/plinth.conf b/share/apache2/plinth.conf index c25e39840..7046b10d9 100644 --- a/share/apache2/plinth.conf +++ b/share/apache2/plinth.conf @@ -1 +1,11 @@ ProxyPass /plinth/ http://localhost:8000/ + + +Options Indexes FollowSymLinks + +RewriteEngine on +RewriteRule [^/]*/plinth$ plinth/ [R] +RewriteRule [^/]*/$ plinth/ [R] +#RewriteRule ^$ plinth/ [R] + +