diff options
author | Sven Gothel <[email protected]> | 2010-05-08 12:16:06 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-05-08 12:16:06 +0200 |
commit | 8da49e2e73ca05e436c79722c28e914d0c31be03 (patch) | |
tree | 409d82944896381132f6a27559dfad9a191bfb8b /.htaccess | |
parent | 50dece0a12e22762468b0d4e5d1d121d9ffa267f (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..79ce570 --- /dev/null +++ b/.htaccess @@ -0,0 +1,7 @@ + +RewriteEngine On +RewriteBase /jogl-demos + +RewriteRule ^$ www/ [R=301,L,NE] +RewriteRule ^index\.html$ www/index.html [R=301,L,NE] + |