Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

I want my qlikview to answer to http://192.168.1.250

I have always had to get to my access point by typing http://servername/qlikview I want to be able to get to it using just the ip address I am using the qlikview webserver, not IIS. I am using QV 9

1 Solution

Accepted Solutions
Not applicable
Author

If IIS is installed, you can do that by creating an html document that will redirect to /qlikview at the server root folder (by default it is c:\inetpub\wwwroot).

Your html should be like that:

<html>

<head><meta http-equiv="refresh" content="0;url=/qlikview"></head>

<body></body>

</html>

Name it index.html and put it in the server root folder.

View solution in original post

1 Reply
Not applicable
Author

If IIS is installed, you can do that by creating an html document that will redirect to /qlikview at the server root folder (by default it is c:\inetpub\wwwroot).

Your html should be like that:

<html>

<head><meta http-equiv="refresh" content="0;url=/qlikview"></head>

<body></body>

</html>

Name it index.html and put it in the server root folder.