adding app.php

This commit is contained in:
Erik Amaru Ortiz
2014-03-07 13:20:06 -04:00
parent f26ab19a61
commit bbd4998845
2 changed files with 21 additions and 0 deletions

19
virtualhost.conf.example Normal file
View File

@@ -0,0 +1,19 @@
<VirtualHost *:80>
ServerName 127.0.0.1
DocumentRoot /example/path/to/processmaker/workflow/public_html
<Directory /example/path/to/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>

View File

@@ -0,0 +1,2 @@
<?php
include "sysGeneric.php";