diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2015-03-24 11:00:29 +0100 |
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2015-03-24 11:00:29 +0100 |
| commit | b67b0056e801a295b31392260523a3ef5ffa1e05 (patch) | |
| tree | 01545b437190ce1a4c043b36509fe7ded788bab6 | |
| parent | 8a6e3f208a5f80ccec71bc11ea698e64cdef3798 (diff) | |
| parent | 3d0153de605d8a37e233df4db8abd66216623d2e (diff) | |
| download | forums-b67b0056e801a295b31392260523a3ef5ffa1e05.tar forums-b67b0056e801a295b31392260523a3ef5ffa1e05.tar.gz forums-b67b0056e801a295b31392260523a3ef5ffa1e05.tar.bz2 forums-b67b0056e801a295b31392260523a3ef5ffa1e05.tar.xz forums-b67b0056e801a295b31392260523a3ef5ffa1e05.zip | |
Merge branch '3.1.x'
| -rw-r--r-- | phpBB/web.config | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/phpBB/web.config b/phpBB/web.config index a73c328626..99a1fe6023 100644 --- a/phpBB/web.config +++ b/phpBB/web.config @@ -1,6 +1,18 @@ <?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> + <rewrite> + <rules> + <rule name="Extension Routes" stopProcessing="true"> + <match url="^(.*)$" ignoreCase="true" /> + <conditions> + <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" /> + <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" /> + </conditions> + <action type="Rewrite" url="app.php" appendQueryString="true" /> + </rule> + </rules> + </rewrite> <security> <requestFiltering> <hiddenSegments> |
