You are viewing limited content. For full access, please sign in.

Question

Question

Configuring IIS to route default site to Web Client

asked on December 10, 2018

We have a customer who wants to disable the default IIS landing page and instead automatically route users to Web Client for security reasons.

 

So when/if they browse to https://server.domain.com they are redirected to https://server.domain.com/laserfiche.

 

Is this just a simple matter of an HTTP redirect or using a URL rewriter?

0 0

Replies

replied on December 10, 2018

You can use the built in IIS re-diretion option but when applied to the root it consistently tries to apply to all child nodes, which breaks everything.

The cleanest way I have found is to create a default htm document that contains the following HTML.

<head> 
  <meta http-equiv="refresh" content="0; URL=https://domain/laserfiche" />
</head>

 

2 0
You are not allowed to follow up in this post.

Sign in to reply to this post.