diff --git a/index.html b/index.html
index c628d16481..3585a77067 100644
--- a/index.html
+++ b/index.html
@@ -54,7 +54,7 @@
// redirected to a page that is known to have no newer js syntax.
if (window.navigator.userAgent.match(/(MSIE|Trident)/)) {
var roomName = encodeURIComponent(window.location.pathname);
- window.location.href = "static/recommendedBrowsers.html" + "?room=" + roomName;
+ window.location.pathname = 'static/recommendedBrowsers.html';
}
window.indexLoadedTime = window.performance.now();
diff --git a/react/features/unsupported-browser/components/DefaultUnsupportedDesktopBrowser.js b/react/features/unsupported-browser/components/DefaultUnsupportedDesktopBrowser.js
index 80836d3de2..c62c0fdaeb 100644
--- a/react/features/unsupported-browser/components/DefaultUnsupportedDesktopBrowser.js
+++ b/react/features/unsupported-browser/components/DefaultUnsupportedDesktopBrowser.js
@@ -15,7 +15,7 @@ class DefaultUnsupportedDesktopBrowser extends Component {
* @returns {void}
*/
componentDidMount() {
- window.location.href = '/static/recommendedBrowsers.html';
+ window.location.pathname = 'static/recommendedBrowsers.html';
}
/**