I have a worpress blog embedded in my site as a subdirectory (http://www.penny-slot-machines.com/blog/) but for a number of reasons, I want to move the content from being hosted on wordpress to being held on static html pages on my site (using the same subdomain)
Are there any big SEO problems I will encounter on this? Anything I should be careful about?
Will I lose my google rankings by doing this?
There are a few things I intend to do to make the transition:
1 – keep the same urls
2- keep the same text content
3 – keep the same titles, meta tags and meta description
4- keep basically the same links on each page
But are there any other things I should look at too?
Do I need to do htaccess type things? or 301 redirects stuff? I’m pretty clueless on these technical issues…
Any help on this would be greatly appreciated!
If you are moving to new URLs, you simply need to create a 301 redirect from the old URLs and Google will pass the “juice” along to your new URLs. A 301 redirect tells Google that you have permanently moved the page to a new location and updates their records accordingly. It will take a couple of weeks for Google to fully make the transfer to the new URLs however, so if you have rankings, they might disappear for that time, but will be right back in after 2-3 weeks.
One other thing I wanted to ask about was whether google, yahoo etc sees these two page urls as the same:
xxx.mysite.blog/
xxx.mysite.blog/index.html
The way my web design package works, both point to the same page, but does this matter in terms of SEO?
Is there an easy way so that of the (many) pages that come up as index.html can get re-directed to the simple / url instead? – That is, one sweeping 301 that can do this for all the pages at once?
Cheers
I created an htaccess file with the following in it:
Options +FollowSymLinks
RewriteEngine On
#
# redirect index.htm and index.html to / (do this before non-www to www)
#
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9} /.*index.html? HTTP/
RewriteRule ^(.*)index.html?$ http://www.penny-slot-machines.com/$1 [R=301,L]
and it seems to work
Is that the right way to go about it?
Please login or Register to submit your answer