The Community is now in read-only mode to prepare for the launch of the new Flexera Community. During this time, you will be unable to register, log in, or access customer resources. Click here for more information.
A customer is wondering why in IIS the ESD site isn't a main site and is instead a subsite/Application. They want to request the creation of a DNS record, but still need the subsite /esd to access it and are looking for an explanation as to why it isn't a main site.
Mar 22, 2021 08:36 AM
As a former colleague of mine used to always say, "Why ask why? That's how it was developed, and asking why isn't going to change it." 🙂 There are multiple options available for redirection if you want to just point to http://<appstore.company.com> and have it redirect to http://<appstore.company.com>/esd. I always just add a <META http-equiv="refresh"> tag into the iisstart.htm file in the default website like the following:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<META http-equiv="refresh" content="0;URL=/esd">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Redirecting to the App Store</title>
</head>
<body>
Redirecting to the App Store
</body>
</html>
The "refresh" META tag tells the browser to redirect to the specified "content" location. Updating the title and body are optional.
Mar 22, 2021 10:32 AM
As a former colleague of mine used to always say, "Why ask why? That's how it was developed, and asking why isn't going to change it." 🙂 There are multiple options available for redirection if you want to just point to http://<appstore.company.com> and have it redirect to http://<appstore.company.com>/esd. I always just add a <META http-equiv="refresh"> tag into the iisstart.htm file in the default website like the following:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<META http-equiv="refresh" content="0;URL=/esd">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Redirecting to the App Store</title>
</head>
<body>
Redirecting to the App Store
</body>
</html>
The "refresh" META tag tells the browser to redirect to the specified "content" location. Updating the title and body are optional.
Mar 22, 2021 10:32 AM