Atozed Forums

Full Version: How to create an alias link
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is it possible to create something like an alias for the links of Intraweb apps?
E.g., instead of, for instance, http://my_ip_address:8880/$/start, something like http://www.my_app.com

Is that possible?
Hi, YES, it is.
First, convert your project to http.sys. Here: https://doc.atozed.com/en/iw15/develop/c...-intraweb/
Set your ServerController for http.sys in
HttpSysOptions.AddDefaultBinding := False;
HttpSysOptions.HostWildCard := hwWeak;
HttpSysOptions.VirtualHostNames := 'http://www.my_app.com';
(06-02-2021, 11:40 AM)Jose Nilton Pace Wrote: [ -> ]Hi, YES, it is.
First, convert your project to http.sys. Here: https://doc.atozed.com/en/iw15/develop/c...-intraweb/
Set your ServerController for http.sys in
HttpSysOptions.AddDefaultBinding := False;
HttpSysOptions.HostWildCard := hwWeak;
HttpSysOptions.VirtualHostNames := 'http://www.my_app.com';

Ok, this is only on Ultimate version. I've Standard version.
Thanks
If it is only to start the application, you can remove the /$/start in most cases. And in the cases it is not possible, you can use a simple static or other redirect.