PM 640 "Cambiar el virtual host de PM 2.8..." SOLVED

- Cambiar el virtual host de PM 2.8 con el file que editóly, parta que funcione el index.html en IE
- Problema resuelto, se realizo el merge del archivo adjunto PM-640 "pmos.html" al archivo "virtualhost.conf.example"
  del branch Master y branch 2.8.
This commit is contained in:
Luis Fernando Saisa Lopez
2014-10-20 08:53:56 -04:00
parent 16db9090fd
commit 392a7e41dd

View File

@@ -2,6 +2,8 @@
ServerName 127.0.0.1
DocumentRoot /example/path/to/processmaker/workflow/public_html
DirectoryIndex index.html index.php
<Directory /example/path/to/processmaker/workflow/public_html>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
@@ -13,7 +15,7 @@
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /app.php [QSA,L]
RewriteRule ^.*/(.*)$ app.php [QSA,L,NC]
</IfModule>
</Directory>
</VirtualHost>