Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Simon 692 posts 1068 karma points
    Mar 21, 2015 @ 15:33
    Simon
    0

    SEO Indexes mapping

    Hi all,

    I have a questions regarding SEO indexes mapping.

    We have a new website for a company and need to map old website indexes to the new website pages.

    I am using 301 Url Tracker.

    But I am not sure how exactly use it sinve the old website is using aspx pages and the new one is umbraco MVC site.

    Old sURL, for examples is www.domain.com/news-articles.aspx

    New URL is www.domain.com/news

    Can you please guide how to achive this because I am trying to do this but when I save, the old URL is becoming just news-articles, without aspx.

    Any ideas pls?

    Thank you.

  • Alex Skrypnyk 6133 posts 23952 karma points MVP 7x admin c-trib
    Mar 28, 2015 @ 16:16
    Alex Skrypnyk
    100

    Hi Simon,

    You can't use UrlTracker for rewriting .aspx pages, because such urls are handled by IIS before UrlTracker, we used urlRewring for the same task.

            <add name="Rewrite"
         virtualUrl="^~/Page.aspx"
         rewriteUrlParameter="ExcludeFromClientQueryString"
         destinationUrl="~/page"
         ignoreCase="true"/>
    

    Thanks

  • Simon 692 posts 1068 karma points
    Mar 28, 2015 @ 16:34
    Simon
    0

    So,

    For what will be used the 301 Url Tracker If cannot do that?

    Thank you

    Kind Regards

  • Alex Skrypnyk 6133 posts 23952 karma points MVP 7x admin c-trib
    Mar 28, 2015 @ 17:12
    Alex Skrypnyk
    0

    The Url Tracker is used to manage URLs within umbraco. It automatically tracks URL changes, for instance when a node is renamed, and makes sure the old URL will redirect to the new location.

  • Simon 692 posts 1068 karma points
    Mar 28, 2015 @ 22:22
    Simon
    0

    Hi Alex,

    So there are no such package which can do this job; to map with old website urls to the news one?

    Kind Regards

  • Simon 692 posts 1068 karma points
    Mar 28, 2015 @ 22:26
    Simon
    0

    Alex,

    and the above code  snippet, where should it be placed?

    Thank you

    Kind Regards

  • Simon 692 posts 1068 karma points
    Mar 29, 2015 @ 13:07
    Simon
    0

    Alex,

    Actually, I have an old website, a non umbraco site. Now, we are creating an umbraco site to replace the existing one. How can I redirect (301) the old urls to the new ones, please?

    Thank you.

    Kind Regards

     

  • Alex Skrypnyk 6133 posts 23952 karma points MVP 7x admin c-trib
    Mar 29, 2015 @ 20:18
    Alex Skrypnyk
    0

    Hi Simon,

    Try to use https://github.com/aspnetde/UrlRewritingNet, we used it in few projects successfully.

     

    Thanks,

    Alex

  • Richard Soeteman 4036 posts 12864 karma points MVP
    Mar 30, 2015 @ 09:53
    Richard Soeteman
    0

    Hi Simon,

    You can use SEO Checker for that http://soetemansoftware.nl/seo-checker it handles all canonical rewrite issues with 2 clicks and does a lot more.

    Best,

    Richard

  • Simon 692 posts 1068 karma points
    Mar 30, 2015 @ 18:25
    Simon
    0

    Hi Alex,

    How should I use that asp.net package, Please? 

  • Alex Skrypnyk 6133 posts 23952 karma points MVP 7x admin c-trib
    Mar 30, 2015 @ 18:37
    Alex Skrypnyk
    0

    Hi Simon,

    Download here http://soetemansoftware.nl/seo-checker/downloads, and install as usual Umbraco package.

    Thanks

  • Simon 692 posts 1068 karma points
    Mar 30, 2015 @ 21:10
    Simon
    0

    Hi Alex,

    Not the the Umbraco package, but the other ASP.net package.

    Thank you.

  • Richard Soeteman 4036 posts 12864 karma points MVP
    Mar 31, 2015 @ 08:10
    Richard Soeteman
    0

    Other asp.net package? There is only a Umbraco package that you can install via the Umbraco package installer.

    Best,

    Richard

  • Simon 692 posts 1068 karma points
    Mar 31, 2015 @ 08:18
    Simon
    0

    Hi,

    I will use the UrlRewriting in the UrlRewriting.config file, where you can set various rules, such as this:-

    <add name="newsRedirection"  

    virtualUrl="http://www.mydomain.com/news-page.aspx"

    rewriteUrlParameter="ExcludeFromClientQueryString" 

    destinationUrl="http://www.mydomain.com/news" 

    redirect="Domain"

    redirectMode="Permanent" 

    ignoreCase="true" />

     

Please Sign in or register to post replies

Write your reply to:

Draft