3 replies
Hey guys,

What is the easiest way to change the location of a web page without losing it's search engine rankings, etc.

For example, if I wanted mysite.com/coolpage.html to become mysite.com/mynewcoolpage.html what is the best way to do this?

Thanks!
#page #redirect #web
  • Profile picture of the author Alpha981
    The safest way to redirect old web pages to the new pages or old web site to the new web site and keep the same search engine rankings is to use the 301 redirect. It will also pass on the page rank from your old site to your new site.


    Code:
    redirect 301 /coolpage.html http://www.mysite.com/mynewcoolpage.html
    or if you have a cpanel account, you can do the same there and it will add your
    setting to the .htaccess file for you
    {{ DiscussionBoard.errors[1221022].message }}
    • Profile picture of the author halfpoint
      Originally Posted by Alpha981 View Post

      The safest way to redirect old web pages to the new pages or old web site to the new web site and keep the same search engine rankings is to use the 301 redirect. It will also pass on the page rank from your old site to your new site.


      Code:
      redirect 301 /coolpage.html http://www.mysite.com/mynewcoolpage.html
      or if you have a cpanel account, you can do the same there and it will add your
      setting to the .htaccess file for you
      Oh ok. So I simply have to add that line with the correct links to my .htacess file?

      That is a whole lot simpler than I had thought!

      Thanks.
      {{ DiscussionBoard.errors[1221052].message }}
      • Profile picture of the author tony1kenobi
        you can also add the redirect from the cpanel in the "redirects" section on most hosts

        just noticed alpha mentioned that as well

        cheers
        Tony
        {{ DiscussionBoard.errors[1221550].message }}

Trending Topics