Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Ehrke <dev@georgswebsite.de>2012-05-02 18:41:00 +0400
committerGeorg Ehrke <dev@georgswebsite.de>2012-05-02 18:41:23 +0400
commitda03d057007d885914dfac7c92cca51747b5f44b (patch)
tree042198fa223b761710480fdc96466649fae321d6 /.htaccess
parentc536e930f40f1bf4dd551ca6fefca15b2f88eee7 (diff)
create folder 'remote' for the remote services like caldav, carddav and webdav
Diffstat (limited to '.htaccess')
-rw-r--r--.htaccess10
1 files changed, 7 insertions, 3 deletions
diff --git a/.htaccess b/.htaccess
index 96ecb685d52..100975ef4cb 100644
--- a/.htaccess
+++ b/.htaccess
@@ -1,5 +1,9 @@
ErrorDocument 403 /core/templates/403.php
ErrorDocument 404 /core/templates/404.php
+Redirect 301 /apps/calendar/caldav.php /remote/caldav.php
+Redirect 301 /apps/contacts/carddav.php /remote/carddav.php
+Redirect 301 /apps/files/webdav.php /remote/webdav.php
+Redirect 301 /files/webdav.php /remote/webdav.php
<IfModule mod_php5.c>
php_value upload_max_filesize 512M
php_value post_max_size 512M
@@ -11,7 +15,7 @@ php_value memory_limit 512M
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule .* - [env=HTTP_AUTHORIZATION:%{HTTP:Authorization},last]
-RewriteRule ^.well-known/carddav /apps/contacts/carddav.php [R]
-RewriteRule ^.well-known/caldav /apps/calendar/caldav.php [R]
+RewriteRule ^.well-known/carddav /remote/carddav.php [R]
+RewriteRule ^.well-known/caldav /remote/caldav.php [R]
</IfModule>
-Options -Indexes
+Options -Indexes \ No newline at end of file