diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-01-27 17:27:01 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-01-27 17:27:01 +0100 |
commit | 9951423415ae5d3903cf9677d150f971d8ef51f6 (patch) | |
tree | cf6b96ee485e075c9c28c4a013192da0f48cc29a /server/sonar-web/src/main/webapp | |
parent | 19e115ff1613edce231d59367c569993f0f4eb55 (diff) | |
download | sonarqube-9951423415ae5d3903cf9677d150f971d8ef51f6.tar.gz sonarqube-9951423415ae5d3903cf9677d150f971d8ef51f6.zip |
Fix display of web homepage without ending slash
Diffstat (limited to 'server/sonar-web/src/main/webapp')
-rw-r--r-- | server/sonar-web/src/main/webapp/WEB-INF/web.xml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/server/sonar-web/src/main/webapp/WEB-INF/web.xml b/server/sonar-web/src/main/webapp/WEB-INF/web.xml index f1cf10fcfc0..e5c747f3ed8 100644 --- a/server/sonar-web/src/main/webapp/WEB-INF/web.xml +++ b/server/sonar-web/src/main/webapp/WEB-INF/web.xml @@ -42,6 +42,10 @@ <filter> <filter-name>RackFilter</filter-name> <filter-class>org.jruby.rack.RackFilter</filter-class> + <init-param> + <param-name>addsHtmlToPathInfo</param-name> + <param-value>false</param-value> + </init-param> </filter> <filter> <filter-name>SecurityFilter</filter-name> |