diff options
author | Sven Gothel <[email protected]> | 2010-05-08 12:54:46 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-05-08 12:54:46 +0200 |
commit | 289a08299867762d0bf7eeb558dfc92d5de293d4 (patch) | |
tree | 258479e69799fc0b1ab16213d1e1c297290f7523 /.htaccess | |
parent | 06da043719e8c93fc123e42709ca6f129a95059d (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..c560405 --- /dev/null +++ b/.htaccess @@ -0,0 +1,7 @@ + +RewriteEngine On +RewriteBase /joal-demos + +RewriteRule ^$ www/ [R=301,L,NE] +RewriteRule ^index\.html$ www/index.html [R=301,L,NE] + |