diff --git a/aspnetcore/mvc/razor-pages/index.md b/aspnetcore/mvc/razor-pages/index.md index 0c7c7cd079..92c2b48b3a 100644 --- a/aspnetcore/mvc/razor-pages/index.md +++ b/aspnetcore/mvc/razor-pages/index.md @@ -312,7 +312,7 @@ URL generation for pages supports relative names. The following table shows whic | RedirectToPage("../Index") | *Pages/Index* | | RedirectToPage("Index") | *Pages/Customers/Index* | -`RedirectToPage("Index")`, `RedirectToPage("./Index")`, and `RedirectToPage("../Index")` are relative names. The `RedirectToPage` parameter is combined with the path of the current page to compute the name of the destination page. +`RedirectToPage("Index")`, `RedirectToPage("./Index")`, and `RedirectToPage("../Index")` are relative names. The `RedirectToPage` parameter is combined with the path of the current page to compute the name of the destination page. Relative name linking is useful when building sites with a complex structure. If you use relative names to link between pages in a folder, you can rename that folder. All the links still work (because they didn't include the folder name).