Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
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

1 Reply
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/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"