diff options
author | Sven Gothel <[email protected]> | 2010-05-08 12:29:50 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-05-08 12:29:50 +0200 |
commit | c6720ef3ed6082161d8b24769f1e691513714e2f (patch) | |
tree | 6e0747e7dfc5bf75ce99f3b2b3187678d4fe464c | |
parent | 1d71ce88e98c5d3924508c2cf13cb131b96bd489 (diff) |
www: add proper redirection to folder www
-rw-r--r-- | .htaccess | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..6251849 --- /dev/null +++ b/.htaccess @@ -0,0 +1,7 @@ + +RewriteEngine On +RewriteBase /applet-launcher + +RewriteRule ^$ www/ [R=301,L,NE] +RewriteRule ^index\.html$ www/index.html [R=301,L,NE] + |