The following PHP script can be used to setup a redirect from your server to another QLM License Server.
In the script below, replace qlm2.net/customer with the corresponding value on your target server.
<?php
$target_url = "https://qlm2.net/customer"; // qlmlicenseserver/qlmservice.asmx
$self_location = str_replace($_SERVER['DOCUMENT_ROOT'], "", __FILE__);
$new_uri = str_replace($self_location, $target_url, $_SERVER['REQUEST_URI']);
header("Location: " . $new_uri, true, 302);
?>
Comments
0 comments
Article is closed for comments.