adding app.php
This commit is contained in:
19
virtualhost.conf.example
Normal file
19
virtualhost.conf.example
Normal 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>
|
||||||
2
workflow/public_html/app.php
Normal file
2
workflow/public_html/app.php
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
<?php
|
||||||
|
include "sysGeneric.php";
|
||||||
Reference in New Issue
Block a user