I have created one ASP.net website. I have web hosting and have ftp access for deploying the website. When I deploy or we can say copy the publish of my website then it is working fine http://www.myweb.in. However I want to make the website link structure as http://www.myweb.in/betav1. I have created the betav1 folder on root and copied all my publish contents to it but seems it’s not working.
I have created one ASP.net website. I have web hosting and have ftp access
Share
This is mostly because your
betav1folder that you created is not configured as an application in IIS or it is not a virtual directory.Your website will be pointing to a folder in the server which is configured as a virtual directory. Since the sub folder is created by you, it will not be marked as a virtual directory or as an application in the server. So high chances that this is the issue.
To configure this folder as an “Application” you will need to go to its properties and click on create button to configure it as an application.
Since its a remote server, you should be asking your service provider for this. Once you do this your problem will most probably be solved.