Skip to content

Instantly share code, notes, and snippets.

@jmolivas
Created May 11, 2015 16:26
Show Gist options
  • Save jmolivas/eb709103c9adce0e1f49 to your computer and use it in GitHub Desktop.
Save jmolivas/eb709103c9adce0e1f49 to your computer and use it in GitHub Desktop.
<VirtualHost *:80>
DocumentRoot /Users/jmolivas/develop/symfony/sf2.dev/web
ServerName sf2.dev
DirectoryIndex app_dev.php
<Directory /Users/jmolivas/develop/symfony/sf2.dev/web>
AllowOverride None
Allow from All
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ app_dev.php [QSA,L]
</IfModule>
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment