Reputation: 1180
I have an app deployed on wamp server at the address : http://localhost/MyApp
Now I want to deploy my app directly at the root i.e. I want my application to be accessible at the address http://localhost/ only. Is this achievable ?
Thanks in advance for help.
Upvotes: 0
Views: 353
Reputation: 668
Sure, just move everything in MyApp/ to the folder one level above it, so if it was (for example) C:\WampServer\htdocs\MyApp just move all of the files to C:\WampServer\htdocs
Upvotes: 1