Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 82159a4

Browse files
committedJul 24, 2014
Attempt at rewrite for IIS
1 parent 165a47b commit 82159a4

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
 

‎public_html/web.config

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<configuration>
3+
<system.webServer>
4+
<rewrite>
5+
<rules>
6+
<rule name="DevAAC" patternSyntax="Wildcard">
7+
<match url="*" />
8+
<conditions>
9+
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
10+
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
11+
</conditions>
12+
<action type="Rewrite" url="index.php" />
13+
</rule>
14+
</rules>
15+
</rewrite>
16+
</system.webServer>
17+
</configuration>

0 commit comments

Comments
 (0)
Failed to load comments.