Files
luos/workflow/public_html/Web.config
Fernando Ontiveros e2a87fa410 BUG 0000 IIS compatibility
Adding WebConfig file to allow IIS to rewrite rules for ProcessMaker
and modify the PATH_SEP in sysgeneric

	new file:   workflow/public_html/Web.config
	modified:   workflow/public_html/sysGeneric.php
2011-08-01 11:08:14 -04:00

14 lines
438 B
XML
Executable File

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="ProcessMaker Rule" stopProcessing="true">
<match url="^.*/(.*)$" ignoreCase="true" />
<action type="Rewrite" url="sysGeneric.php" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>