Running localhost webapp projects under domain name using fiddler2
Posted
by
user01
on Server Fault
See other posts from Server Fault
or by user01
Published on 2013-11-12T08:40:24Z
Indexed on
2013/11/12
9:58 UTC
Read the original article
Hit count: 214
I have a Tomcat server running on my local dev machine(running Windows8) & I use fiddler2 to assign an alias to localhost
as my domain name (www.mydomainName.com), so my application webpages open in the browser like this:
http://www.mydomainName.com/myAppName/welcome.html
instead of
http://localhost:8080/myAppName/welcome.html
But I want to my webapp pages urls to omit 'myAppName' & be something like :
http://www.mydomainName.com/welcome.html
How could I configure to do this ?
© Server Fault or respective owner