Skip to content

Instantly share code, notes, and snippets.

@eliasfaical
Created October 26, 2017 19:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eliasfaical/ed41d7d31cf2f05dc31b42a5510df3f0 to your computer and use it in GitHub Desktop.
Save eliasfaical/ed41d7d31cf2f05dc31b42a5510df3f0 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.web>
<identity password="ragi@2015" userName="ragibeneficios" />
</system.web>
<system.webServer>
<urlCompression doDynamicCompression="false" />
<rewrite>
<rules>
<rule name="WordPress: http://www.ragibeneficios.com.br" 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>
<defaultDocument enabled="true">
<files>
<add value="index.htm" />
<add value="index.html" />
<add value="index.php" />
<add value="index.asp" />
<add value="default.asp" />
<add value="index.aspx" />
<add value="default.aspx" />
</files>
</defaultDocument>
<handlers>
<add name="PHP-FastCGI7.0" path="*.php" verb="*" modules="FastCgiModule" scriptProcessor="C:\php7.0\php-cgi.exe" resourceType="File" />
</handlers>
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment