1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-22 08:42:35 +02:00

[ticket/13271] Fix URL Rewriting on IIS7

PHPBB3-13271
This commit is contained in:
Oliver Schramm 2015-03-23 18:23:12 +01:00
parent a32f4869de
commit 476b762542

@ -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>