Skip to content

Instantly share code, notes, and snippets.

@eriknyk
Created April 29, 2015 17:45
Show Gist options
  • Save eriknyk/71dd932419cf85c6a2af to your computer and use it in GitHub Desktop.
Save eriknyk/71dd932419cf85c6a2af to your computer and use it in GitHub Desktop.
<VirtualHost 127.0.0.1>
ServerName processmaker
DocumentRoot /Users/erik/Web/processmaker.github/workflow/public_html
<Directory /Users/erik/Web/processmaker/workflow/public_html>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
ExpiresActive On
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /app.php [QSA,L]
</IfModule>
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment