Link to home
Start Free TrialLog in
Avatar of citrix009
citrix009

asked on

Creating a redirect for citrix page

I want to create a redirect for the citrix website to make it easier to remember to the customers. I know one of the ways i.e. is to go to IIS and enter the http address by selecting redirect. Is there any other efficient way to create the redirect? Thanks.
Avatar of AdamBNYC
AdamBNYC

Edit the 'webinterface.htm' file located at c:\inetpub\wwwroot. Change where it says window.location="HTTPS:///Citrix/Metaframe/default.htm"
Avatar of citrix009

ASKER

In this file all I get is :

<!--
  WebInterface.htm
  Copyright (c) 2000 - 2007 Citrix Systems, Inc. All Rights Reserved.
  Web Interface 4.6.0.18291
-->
<script type="text/javascript">
  <!--
  window.location="/Citrix/AccessPlatform";
  // -->
</script>
So enter the whole url for windows location?
ASKER CERTIFIED SOLUTION
Avatar of AdamBNYC
AdamBNYC

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
The easiest way that I have found is to create a new Default.htm file in the \inetpub\wwroot\ folder. In the folder put the following code snippet. This will redirect users that go to http://servername to http://servername/Citrix/AccessPlatform.

Make sure you change the URL in the code to be the same long URL to get to the web interface. The number before the URL is the amount in seconds you want the broswer to wait before redirecting. You can have it set to 5 seconds and have the page display something like "Please wait while we redirect you to your web page" and add that text where it says "Optional page text here". I wouldn't recommend adding any time because Citrix already does their own redirection\checking on the initial page.


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Your Page Title</title>
<meta http-equiv="REFRESH" content="0;url=http://servername/Citrix/AccessPlatform/"></HEAD>
<BODY>
Optional page text here.
</BODY>
</HTML>

Open in new window

Thank you all.
250