diff options
author | Sven Gothel <[email protected]> | 2010-05-08 12:25:48 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-05-08 12:25:48 +0200 |
commit | c626265ab883661c6fe263831af10d7c8b7211f3 (patch) | |
tree | 2bebeae80994518389d823483ceccef9702df39c /.htaccess | |
parent | ac5c3e853638a2ca9e35db56e4910720f5a146d0 (diff) |
www: add proper redirection to folder www
Diffstat (limited to '.htaccess')
-rw-r--r-- | .htaccess | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.htaccess b/.htaccess new file mode 100644 index 000000000..a947f3c34 --- /dev/null +++ b/.htaccess @@ -0,0 +1,7 @@ + +RewriteEngine On +RewriteBase /jogl + +RewriteRule ^$ www/ [R=301,L,NE] +RewriteRule ^index\.html$ www/index.html [R=301,L,NE] + |