From 729f94331f0cb378cab8533e2ec98e5c60552434 Mon Sep 17 00:00:00 2001 From: FleischKarussel <der.darude@gmail.com> Date: Fri, 4 Apr 2014 13:17:31 +0200 Subject: [PATCH] vhost.conf for linux mod_rewrite enabled --- README.md | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c6967244d7ce..f6afe09b26f4 100644 --- a/README.md +++ b/README.md @@ -154,12 +154,15 @@ If you still run into a permissions error, you may need to increase the permissi The document root for the app should be set to the public directory. In a standard Apache virtualhost setup, that might look something like this on a standard linux LAMP stack: - <VirtualHost *:80> - DocumentRoot /var/www/html/public - ServerName www.example.org +<VirtualHost *:80> + <Directory /var/www/html/public> + AllowOverride All + </Directory> + DocumentRoot /var/www/html/public + ServerName www.example.org - # Other directives here - </VirtualHost> + # Other directives here +</VirtualHost> An OS X virtualhost setup could look more like: