diff options
author | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2016-02-22 21:37:21 +0100 |
---|---|---|
committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2016-02-22 21:37:21 +0100 |
commit | 68996e527eddba545a045b4d1142f73942862b45 (patch) | |
tree | 05b9a2e6f3371be8391f417b93df002151ae1c99 /phpBB | |
parent | d17257c3465c0a7215edef773e58a2c9b13d2588 (diff) | |
parent | 49d42e288120d1bbce3a592fb659ddb69e65eed4 (diff) | |
download | forums-68996e527eddba545a045b4d1142f73942862b45.tar forums-68996e527eddba545a045b4d1142f73942862b45.tar.gz forums-68996e527eddba545a045b4d1142f73942862b45.tar.bz2 forums-68996e527eddba545a045b4d1142f73942862b45.tar.xz forums-68996e527eddba545a045b4d1142f73942862b45.zip |
Merge branch '3.2.x'
* 3.2.x:
[ticket/13842] Prevent internal server errors without rewrite module on IIS
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/web.config | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/phpBB/web.config b/phpBB/web.config index 99a1fe6023..c7a1240453 100644 --- a/phpBB/web.config +++ b/phpBB/web.config @@ -1,5 +1,12 @@ <?xml version="1.0" encoding="UTF-8"?> <configuration> + <configSections> + <sectionGroup name="system.webServer" > + <sectionGroup name="rewrite"> + <section name="rules" overrideModeDefault="Allow" /> + </sectionGroup> + </sectionGroup> + </configSections> <system.webServer> <rewrite> <rules> |