Skip to content

Instantly share code, notes, and snippets.

@fabiofabbrucci
Created January 25, 2012 23:58
Show Gist options
  • Save fabiofabbrucci/1679811 to your computer and use it in GitHub Desktop.
Save fabiofabbrucci/1679811 to your computer and use it in GitHub Desktop.
vh e ht
<VirtualHost *:80>
ServerAdmin fabio.fabbrucci@gmail.com
ServerName abmundi
DocumentRoot /var/www/ABMundi/web
DirectoryIndex app.php
<Directory /var/www/ABMundi/web>
AllowOverride all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/abmundi.error.log
LogLevel notice
CustomLog ${APACHE_LOG_DIR}/abmundi.access.log combined
</VirtualHost>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ app.php [QSA,L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment