I don't have a very good understand on ports so I'm not sure how to explain this.
I have an app on my site running on, for example, www.url.com:1234
I need the url to be like www.url.com/class/subfoler/index.html
How do I do that? Thanks.
I don't have a very good understand on ports so I'm not sure how to explain this.
I have an app on my site running on, for example, www.url.com:1234
I need the url to be like www.url.com/class/subfoler/index.html
How do I do that? Thanks.
You need to parse the port with the domain.
Try:
http://www.url.com:1234/class/subfoler/index.html
You can try using an iframe tag in your index.html file which would serve your app's (port 1234) URL from inside your main (port 80) website, like so:
<iframe src="http://www.url.com:1234">If you can read this, your browser does not support iframes.</iframe>