Mautic IIS web.config

Hi All,



I have seen a few questions in relation to setting up web.config to re write Mautic URL’s but no working solution. Please see the below example which is working nicely on my installation…

Code:
<?xml version="1.0" encoding="utf-8" ?>

Thanks

Hi All,

I have seen a few questions in relation to setting up web.config to re write Mautic URL’s but no working solution. Please see the below example which is working nicely on my installation…

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.web>
<customErrors mode="Off" />
</system.web>
<system.webServer>
<staticContent>
<remove fileExtension=".woff" />
<mimeMap fileExtension=".woff" mimeType="application/font-woff" />
<remove fileExtension=".woff2" />
<mimeMap fileExtension=".woff2" mimeType="application/font-woff2" />
</staticContent>
<rewrite>
<rules>
	  <rule name="Main Rule" stopProcessing="true">
	  <match url=".*"/>
	  <conditions logicalGrouping="MatchAll">
	  <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
	  <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
	  </conditions>
	  <action type="Rewrite" url="index.php"/>
	  </rule>
			<rule name="Second Rule" patternSyntax="Wildcard">
				<match url="*"/>
					<conditions>
						<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
						<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
					</conditions>
				<action type="Rewrite" url="index.php"/>
			</rule>
</rules>
</rewrite>
</configuration>

Thanks