Microsoft Azure Solution for Revolution Slider
-
If you’re using Revolution Slider on Microsoft Azure, then please try the following web.config rule.
<rule name=”revslider” stopProcessing=”true”>
<match url=”revolution.extension(.*)$” ignoreCase=”false” />
<action type=”Rewrite” url=”/wp-content/plugins/revslider/public/assets/js/extensions/revolution.extension{R:1}” />
</rule>==================================================
Sample web.config:<?xml version=”1.0″ encoding=”UTF-8″?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name=”revslider” stopProcessing=”true”>
<match url=”revolution.extension(.*)$” ignoreCase=”false” />
<action type=”Rewrite” url=”/wp-content/plugins/revslider/public/assets/js/extensions/revolution.extension{R:1}” />
</rule>
<rule name=”wordpress” 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>
</system.webServer>
</configuration>
- The topic ‘Microsoft Azure Solution for Revolution Slider’ is closed to new replies.