diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-31 16:16:28 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-31 16:16:28 +0100 |
commit | e22a8866fbf636b57bd8fae97f73c51a8e66504c (patch) | |
tree | 012e851bf99ab776730a57245dd26dd523b1194d /index.html | |
parent | 43f8bf8e5c37745f67c65d76daa8dda923aeb7ea (diff) | |
download | nextcloud-server-e22a8866fbf636b57bd8fae97f73c51a8e66504c.tar.gz nextcloud-server-e22a8866fbf636b57bd8fae97f73c51a8e66504c.zip |
some web servers by default don't recognize index.php as default page - IIS for example
In order to allow easy installation and configuration this index.html has been added with a redirect to index.php
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 00000000000..69d42e3a0b3 --- /dev/null +++ b/index.html @@ -0,0 +1,6 @@ +<!DOCTYPE html> +<html> +<head> + <meta http-equiv="refresh" content="0; URL=index.php"> +</head> +</html> |