From c87d28f7d02337c34f1452887cd792322ffc323d Mon Sep 17 00:00:00 2001 From: LordSchmackes Date: Sat, 23 May 2026 20:27:06 +0200 Subject: [PATCH] Update README.md to clarify Apache configuration for local setup, specifying the use of `DirectoryIndex index.php` instead of relying on `.htaccess` overrides. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index da8a80d..3cb670b 100644 --- a/README.md +++ b/README.md @@ -128,7 +128,7 @@ http://localhost:8000 #### Option B: Local Apache (XAMPP / MAMP / WAMP) If you prefer running a full local stack: 1. Move or link the project directory inside your local server's document root (e.g., `htdocs` or `www`). -2. Configure the virtual host to serve `index.php` as the directory index. +2. Configure the virtual host or Apache server config to use `DirectoryIndex index.php`; this repo does not rely on `.htaccess` overrides. 3. Access the site via your custom local virtual host (e.g., `http://localhost/flixcooks-website`). ---