diff options
author | Sven Gothel <[email protected]> | 2010-05-08 13:20:06 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-05-08 13:20:06 +0200 |
commit | 7ea189170b6ae75b7e15be43344a785eb56bb48a (patch) | |
tree | 856aea389e529c1261b01c11f81334bb20b3c087 | |
parent | a33fade58b3cf22b72241767e6615042a5ed22c1 (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..6ec5491 --- /dev/null +++ b/.htaccess @@ -0,0 +1,7 @@ + +RewriteEngine On +RewriteBase /jogl-utils + +RewriteRule ^$ www/ [R=301,L,NE] +RewriteRule ^index\.html$ www/index.html [R=301,L,NE] + |