2014-03-07 13:20:06 -04:00
|
|
|
<VirtualHost *:80>
|
|
|
|
|
ServerName 127.0.0.1
|
|
|
|
|
|
|
|
|
|
DocumentRoot /example/path/to/processmaker/workflow/public_html
|
2014-10-20 08:53:56 -04:00
|
|
|
DirectoryIndex index.html index.php
|
|
|
|
|
|
2014-03-07 13:20:06 -04:00
|
|
|
<Directory /example/path/to/processmaker/workflow/public_html>
|
|
|
|
|
Options Indexes FollowSymLinks MultiViews
|
2017-01-24 16:53:53 -04:00
|
|
|
AllowOverride All
|
2014-03-07 13:20:06 -04:00
|
|
|
Order allow,deny
|
2016-04-12 17:20:55 -04:00
|
|
|
Allow from all
|
|
|
|
|
Require all granted
|
2014-03-07 13:20:06 -04:00
|
|
|
|
|
|
|
|
ExpiresActive On
|
|
|
|
|
|
|
|
|
|
<IfModule mod_rewrite.c>
|
|
|
|
|
RewriteEngine On
|
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
2014-10-20 08:53:56 -04:00
|
|
|
RewriteRule ^.*/(.*)$ app.php [QSA,L,NC]
|
2014-03-07 13:20:06 -04:00
|
|
|
</IfModule>
|
|
|
|
|
</Directory>
|
|
|
|
|
</VirtualHost>
|