From 93022d05bf9fe625989a5bc66008e267e6807124 Mon Sep 17 00:00:00 2001 From: KodeStar Date: Sat, 3 Feb 2018 16:27:56 +0000 Subject: [PATCH] Update readme.md --- readme.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/readme.md b/readme.md index 8e094630..ebed0b72 100644 --- a/readme.md +++ b/readme.md @@ -2,6 +2,29 @@ An Application dashboard and launcher +## Web Server Configuration + +### Apache +A .htaccess file ships with the app, however, if it does not work with your Apache installation, try this alternative: + +``` +Options +FollowSymLinks +RewriteEngine On + +RewriteCond %{REQUEST_FILENAME} !-d +RewriteCond %{REQUEST_FILENAME} !-f +RewriteRule ^ index.php [L] +``` + +### Nginx +If you are using Nginx, the following directive in your site configuration will direct all requests to the index.php front controller: + +``` +location / { + try_files $uri $uri/ /index.php?$query_string; +} +``` + ## License This app is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).