Running localhost webapp projects under domain name using fiddler2
- by user01
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 ?