Added note to ensure mode_rewrite is enabled

This commit is contained in:
Dan Brown 2020-12-09 21:27:36 +00:00
commit b5fef47d01
Signed by: danb
GPG key ID: 46D9F943C24A2EF9

View file

@ -67,6 +67,9 @@ git clone https://github.com/BookStackApp/BookStack.git --branch release --singl
#### URL Rewrite rules
**Apache**
Ensure `mod_rewrite` is enabled.
```apache
Options +FollowSymLinks
RewriteEngine On
@ -77,6 +80,8 @@ RewriteRule ^ index.php [L]
```
**Nginx**
```nginx
location / {
try_files $uri $uri/ /index.php?$query_string;