-
Notifications
You must be signed in to change notification settings - Fork 0
/
web.config
16 lines (16 loc) · 1.51 KB
/
web.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules><rule name="WordPress Rule 1" stopProcessing="true"><match url="^index\.php$" ignoreCase="false"/><action type="None"/></rule><rule name="WordPress Rule 2" stopProcessing="true"><match url="^wp-admin$" ignoreCase="false"/><action type="Redirect" url="wp-admin/" redirectType="Permanent"/></rule><rule name="WordPress Rule 3" stopProcessing="true"><match url="^" ignoreCase="false"/><conditions logicalGrouping="MatchAny"><add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false"/><add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false"/></conditions><action type="None"/></rule><rule name="WordPress Rule 4" stopProcessing="true"><match url="^(wp-(content|admin|includes).*)" ignoreCase="false"/><action type="Rewrite" url="{R:1}"/></rule><rule name="WordPress Rule 5" stopProcessing="true"><match url="^([_0-9a-zA-Z-]+/)?(.*\.php)$" ignoreCase="false"/><action type="Rewrite" url="{R:2}"/></rule><rule name="WordPress Rule 6" stopProcessing="true"><match url="." ignoreCase="false"/><action type="Rewrite" url="index.php"/></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>