Atozed Forums
How to create an alias link - Printable Version

+- Atozed Forums (https://www.atozed.com/forums)
+-- Forum: Atozed Software Products (https://www.atozed.com/forums/forum-1.html)
+--- Forum: IntraWeb (https://www.atozed.com/forums/forum-3.html)
+---- Forum: English (https://www.atozed.com/forums/forum-16.html)
+----- Forum: IntraWeb General Discussion (https://www.atozed.com/forums/forum-4.html)
+----- Thread: How to create an alias link (/thread-2424.html)



How to create an alias link - Comograma - 06-02-2021

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?


RE: How to create an alias link - Jose Nilton Pace - 06-02-2021

Hi, YES, it is.
First, convert your project to http.sys. Here: https://doc.atozed.com/en/iw15/develop/creating-http-sys-applications-with-intraweb/
Set your ServerController for http.sys in
HttpSysOptions.AddDefaultBinding := False;
HttpSysOptions.HostWildCard := hwWeak;
HttpSysOptions.VirtualHostNames := 'http://www.my_app.com';


RE: How to create an alias link - Comograma - 06-02-2021

(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/creating-http-sys-applications-with-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


RE: How to create an alias link - kudzu - 06-02-2021

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.