diff options
author | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2016-03-25 11:56:01 +0100 |
---|---|---|
committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2016-03-25 11:56:01 +0100 |
commit | 9f3ee5859569bd9e66488890d7cb00fe9eceb4cb (patch) | |
tree | 5d0e62bf099e038c4ffb5705d9b519e5cfa7858a /phpBB | |
parent | 7f9ba9849b2bd3c97fd9a828ddb46c83199b9c55 (diff) | |
parent | 43e87e3e630980137e8c480714184174095eeebe (diff) | |
download | forums-9f3ee5859569bd9e66488890d7cb00fe9eceb4cb.tar forums-9f3ee5859569bd9e66488890d7cb00fe9eceb4cb.tar.gz forums-9f3ee5859569bd9e66488890d7cb00fe9eceb4cb.tar.bz2 forums-9f3ee5859569bd9e66488890d7cb00fe9eceb4cb.tar.xz forums-9f3ee5859569bd9e66488890d7cb00fe9eceb4cb.zip |
Merge pull request #4188 from marc1706/ticket/13842
[ticket/13842] Prevent internal server errors without rewrite module on IIS
* marc1706/ticket/13842:
[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> |