diff --git a/src/Umbraco.Web/PublishedContentExtensions.cs b/src/Umbraco.Web/PublishedContentExtensions.cs
index 2669ed29f3..b6ecbfcda8 100644
--- a/src/Umbraco.Web/PublishedContentExtensions.cs
+++ b/src/Umbraco.Web/PublishedContentExtensions.cs
@@ -46,7 +46,18 @@ namespace Umbraco.Web
///
///
///
+ [Obsolete("NiceUrl() is obsolete, use the Url() method instead")]
public static string NiceUrl(this IPublishedContent doc)
+ {
+ return doc.Url();
+ }
+
+ ///
+ /// Gets the Url for the content item
+ ///
+ ///
+ ///
+ public static string Url(this IPublishedContent doc)
{
switch (doc.ItemType)
{
@@ -68,7 +79,18 @@ namespace Umbraco.Web
///
///
///
+ [Obsolete("NiceUrlWithDomain() is obsolete, use the UrlWithDomain() method instead")]
public static string NiceUrlWithDomain(this IPublishedContent doc)
+ {
+ return doc.UrlWithDomain();
+ }
+
+ ///
+ /// Gets the UrlWithDomain for the content item
+ ///
+ ///
+ ///
+ public static string UrlWithDomain(this IPublishedContent doc)
{
switch (doc.ItemType)
{