Azure domain addresses not showing my page directions

I have a problem setting my site url. The project is based on mvc azure.

Normally azure has a URL: xyz.cloudapp.netSo when I install my site live, I added a domain that points to the azure project. www.xyz.com.

The problem is that if I try to click on the "Contact" or "Oh," I want to URL-address in the browser displayed as www.xyz.com/aboutand www.xyz.com/Contact. But whenever I click the "About" or "Contact" button, the browser URL is still displayed as www.xyz.com.

I have more than 50 pages on my site, however Google only indexes it as one. Can someone please tell me how can I get this url showing the pages where I am also routing.

+3
source share
1 answer

Use the domain control panel, you can route using cname or A. Use routing Url "/ Contact" make sure that "/"

To record A, use the Azure Production VIP and enter two records. one null host name (xyz.com), two www host names (www.xyz.com). It may also be the name you want (my.xyz.com).

For cname, the only difference is do not use VIP. Use xyz.cloudapp.net instead

Use the domain control panel for all of these processes.

Azure Url Example

Example Cname Url

DNS check see end of document WWW A Record

+1
source

All Articles