Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to change address of my online page but want to make sure that I won't lose any SEO thing.

e.g. want to move a page from http://example.com/1.aspx to http://example2.com/a.aspx

Is it possible to do this?

If yes, then how?

If no, what best could be done here if I have to move page and there is no way to stop this.

share|improve this question
1  
I would not dare answer after seeing how someone's voting. 301 is the way to go though. – Lauri Lehtinen Jun 7 '10 at 4:45

closed as off topic by Peter, griegs, Artelius, Greg Hewgill, bmargulies Jun 8 '10 at 1:45

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

3 Answers

up vote 3 down vote accepted

You want a 301 permanent redirect.

share|improve this answer
2  
301 is best you will loose some link juice but you need to make sure you redirect from page to page not just one giant global one... see this j.mp/9NeDN3 its google's official explanation – Carter Cole Jun 9 '10 at 14:50

Using an HTTP redirect code (probably 301 Moved Permanently) is the best way to do this, as search engines clearly understand what it means.

The exact nature depends on which web server you are using, but google should help you find that answer.

share|improve this answer
1  
Wow, someone's in a bad mood today – Artelius Jun 7 '10 at 4:45

Erm, what?

You could do a re-direct from 1.aspx to 2.aspx until 2.aspx has reasonable SEO.

kinda unsure what it is you're asking here

edit

ah ok i see after your edit.

Yeah not really do-able i don't think as crawlers rate pages and if you change your page then the seo for it will go.

however, the rating for your site will still be there so you shouldn't lose too much.

share|improve this answer
downvoter! i trust there is a reason for it and if there is that you have a solution – griegs Jun 7 '10 at 4:42
Yeah i upvoted to counter it – Matt Mitchell Jun 9 '10 at 16:03

Not the answer you're looking for? Browse other questions tagged or ask your own question.