Updated groupdav.htaccess to support ActiveSync and CalDAV/CardDAV

Added an commented redirect to facilitate EGroupware login in subdirectory
This commit is contained in:
Ralf Becker 2016-11-17 13:00:19 +01:00
parent d9031c4c2e
commit 497c464f7c

View File

@ -1,23 +1,27 @@
# EGroupware CalDav or CardDAV support for Apple apps (OS X and iOS)
#
# $Id$
#
# This file can be copyied as .htaccess to your document root
# to support Mac or iPhone clients to autodetec CalDAV and CardDAV
# (currently Addressbook does NOT allow to specify our groupdav.php
# URL manually).
# EGroupware CalDav/CardDAV and ActiveSync support via .htaccess
#
# Please note:
# - this file needs to be copyied as .htaccess to your document root
# to support CalDAV/CardDAV or ActiveSync synchronisation.
# - your Apache web server needs to be setup to read .htaccess files and
# allow use of the RewriteEngine directive (AllowOverride FileInfo).
# - you need to replace /egroupware with your EGroupware URL path eg. /egw
# - commented out last directiv can be used to redirect from just the domain to
# /egroupware/ to facilitate EGroupware login in default subdirectory.
RewriteEngine On
RewriteBase /
RewriteRule ^.well-known/(caldav|carddav)$ /egroupware/groupdav.php/ [R]
RewriteCond %{REQUEST_METHOD} ^(PROPFIND|OPTIONS)$
RewriteRule ^/$ /egroupware/groupdav.php/ [R]
# Enable ActiveSync protocol support via eSync app
RewriteRule ^Microsoft-Server-ActiveSync /egroupware/activesync/index.php [L,QSA]
# CalDAV/CardDAV autodetection
RewriteRule ^.well-known/(caldav|carddav)$ /egroupware/groupdav.php/ [R]
# redirect PROPFIND or OPTIONS request on root to EGroupware CalDAV/CardDAV handler
RewriteCond %{REQUEST_METHOD} ^(PROPFIND|OPTIONS)$
RewriteRule ^$ /egroupware/groupdav.php/ [R]
# iOS 4.3+ calendar requires that to autodetect accounts
RewriteRule ^(/principals/users/.*)$ /egroupware/groupdav.php$1 [R]
RewriteRule ^(principals/users/.*)$ /egroupware/groupdav.php/$1 [R]
# redirect root to EGroupware under /egroupware
#RewriteRule ^$ /egroupware/ [R]