Internet Explorer blocking

Internet Explorer blocking - If a page has internal and external outgoing links to redirecting URLs, it’s returning 3xx (301, 302, etc.) HTTP status codes standing for redirection. This issue means that the page does not exist on a permanent or temporary basis. It appears on most of the popular web browsers, usually caused by a misconfigured website. However, there are some steps you can take to ensure the issue isn’t on your side. You can find more details about redirecting URLs by reading the Google Search Central overview. In this article, we’ll go over how you can fix the Internet Explorer blocking error on your web browser. Problem :


How do I add a custom page that is displayed only to Internet Explorer users so that they are not able to access my blog.



I'm using Wordpress 3.3 and thought there would be a plugin for that or something but no luck (there's a plugin that only adds a pop up window).



Is that achieved by using some kind of redirect or what?


Solution :

You can use conditional comments for IE users and then use JavaScript to redirect them to a page that tells them whatever it is you want to say.



Try something like this in the <head> of your web page:



<!--[if IE]>
<script type="text/javascript">
window.location = 'ie-only.html';
</script>
<![endif]-->

We hope that this article has helped you resolve the redirects, internet-explorer, code error in your web browsers. Enjoy browsing the internet uninterrupted!

Comments

Popular posts from this blog

Redirected urls show in serp, with the original permalink but with the title and meta of the target page

How can I redirect everything but the index as 410?

How do I redirect traffic only if being accessed from a specific port?