diff options
author | Sven Gothel <[email protected]> | 2010-05-08 12:52:47 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-05-08 12:52:47 +0200 |
commit | e1fa237e8d8d678914444563b8432a058865d2c2 (patch) | |
tree | 91ca9647efdb93917ae61aa584b1af057ddf3747 /.htaccess | |
parent | edbff99164a350a0147a5c8617cef9a86f7a2749 (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 0000000..a6b9b91 --- /dev/null +++ b/.htaccess @@ -0,0 +1,7 @@ + +RewriteEngine On +RewriteBase /gluegen + +RewriteRule ^$ www/ [R=301,L,NE] +RewriteRule ^index\.html$ www/index.html [R=301,L,NE] + |