Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Silent Redirect URL

Hi,

Is there any method so that final users access the QV application immediatelly with a silent Redirct URL?

I will explain more: the direct link to my QV application is:

http://localhost/QvAJAXZfc/AccessPoint.aspx?open=&id=Local|MyApp.qvw&client=Plugin

I want to use another URL like http://localhost/MyApp and the user is silently redirected to http://localhost/QvAJAXZfc/AccessPoint.aspx?open=&id=Local|MyApp.qvw&client=Plugin

for the moment I am using already mentioned method to redirect URL, in the config.xml

<Folders>

<Folder>

<Name>MyApp</Name>

<Path>C:\Program Files\QlikView\MyApp</Path>

</Folder>

<Folder>

<Name>QLIKVIEW</Name>

<Path>C:\Program Files\QlikView\Web</Path>

</Folder>

.

.

.

.

And in the index.htm under C:\Program Files\QlikView\Web I write:



<HTML>

<HEAD>

<meta http-equiv="refresh" content="2;url=/QvAJAXZfc/AccessPoint.aspx?open=&id=Local|MyApp.qvw&client=Plugin">

</HEAD>

<BODY>

redirecting please wait.........................................

</BODY>

</HTML>



But users still bothering about the redirection !

could you please help?

Thank you in advance !

HJ

Labels (1)
1 Reply
rwunderlich
MVP
MVP

Make your redirect time zero if you don't want users to see it.

meta http-equiv="refresh" content="0;url=/QvAJAXZfc/AccessPoint.aspx?open=&id=Local|MyApp.qvw&client=Plugin"