Created
May 11, 2015 16:26
-
-
Save jmolivas/eb709103c9adce0e1f49 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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