IIS (Internet Information Services) is the web server for Windows systems created by Microsoft. This web server is most popular for hosting .net framework based websites. We can also host other programming languages websites by adding their modules and handlers. This article will help you for creating a new website in IIS on Windows...
Virtual Host (Known as Server Blocks in Nginx) is used for hosting multiple websites on the single server. In this tutorial, you will get details about creating Virtual Host (Server Block) in Nginx web server on Ubuntu servers. Read: Set Up Virtual Hosts in Apache2 on Ubuntu Nginx Installation We are assuming that you...
This tutorial will help you to redirect a webpage to another webpage using JavaScript. Here are 3 examples of redirecting webpage to another with JavaScript. Example 1: We can redirect user to other page using window.location.replace in JavaScript. window.location.replace has pretty similar to an HTTP redirect. [crayon-5df1f39fb0ae0085929834/] Example 2: It is better to use...
IIS (Internet Information Services) is a web server created by Microsoft for Windows systems. As a system administrator we know that to manage IIS is easy from GUI. Some times we get tasks to create large number of websites under IIS or create site in IIS using windows batch script. This article will guide...