nextcloud / lookup-server

:eyes: Lookup server to find remote users for federated sharing
23 stars 16 forks source link

Add missing .htaccess file #21

Closed oparoz closed 7 years ago

oparoz commented 7 years ago

URLs such as /users won't work without the proper mod_rewrite rule.

Please add a .htaccess file containing:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
MorrisJobke commented 7 years ago

PRs are welcome

oparoz commented 7 years ago

Done https://github.com/nextcloud/lookup-server/pull/22