Internet Explorer URL Forwarding

Hi,

I’d like to create a different page for users that have Internet Explorer that simply has a brief message telling them that they need to use a different browser in order to get the full site experience. I know it can be done I’m just not sure how. Any ideas?

1 Like

Hi @Alchemy, here is one thing to try:

Add some custom code to the header of your site using custom code: Custom code in head and body tags | Webflow University

<!--[if IE]>
<script type="text/javascript">
window.location = "http://www.google.com/";
</script>
<![endif]-->

Save changes, republish and then test if it works. You can change the location url to whatever you want.

Thanks @cyberdave! Worked perfectly.

1 Like

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.