Forum Moderators: Robert Charlton & goodroi
I changed the shared borders from FrontPage in dreamweaver to page top, side etc. Furthermore I removed the excessive amount of anchor text, H1 headings, FrontPage coding and more stuff that is not really appreciated anymore these days. I also adjusted for some pages the titles and descriptions in the Meta tags. The urls are all kept the same, so no loss of pages.
In general I would say I am heading in the right direction. However with Google you never know (I guess that is the Google Trauma in me). My question is, can I just remove all my old pages (400+) and replace them with my new pages? Or should I be careful to not get penalized by Google for some reason?
Thank you in advance for your input!
If you update a website or give it an overall updated look, you offer something better to the visitors. This is what bothers me with Google, that things that are a good thing, can result in bad results such as the ones you describe.
I now have a FP website, and some of the FP components will result in problems if I would upload some new pages.
=> You are cleaning up the old messy Frontpage code - GOOD
=> You are making some visual changes on the site for layout / graphics / colors / images..?
=> You are changing out some page <titles> and meta tag information ... WHY?
=> You are retaining all your original (400) pages and their associated URLs (this implies that your internal link structure will remain intact along with any external links pointing into your site ... not to worry about this for your root URL...but if you have external links pointing to some of your internal pages...then you want to protect these for sure..) - GOOD
=> You Wrote:
Furthermore I removed the excessive amount of anchor text, H1 headings,...
When you are referring to anchor text ... do you mean links embedded in your body text ... or do you mean anchor text in your navigation...?
When you mention H1 headings...do you have only one per page ...?
I recently redesigned a 600+ page site with no ill effects. I actually changed all the URLs and used an .htaccess file for 301 permanent redirects. Everything went smoothly. No change in ranking or traffic after three weeks.
You are making some visual changes on the site for layout / graphics / colors / images..?
Layout, graphics and colors: yes I change them all.
You are changing out some page <titles> and meta tag information ... WHY?
Well for some of them I noticed that I used a standard title, instead of a title that reflects the content of that page.
When you are referring to anchor text ... do you mean links embedded in your body text ... or do you mean anchor text in your navigation...?
When you mention H1 headings...do you have only one per page ...?
No urls of pages will change or deleted, these will all stay the same and keep the same content.
1) reduced the amount of code, compared to text
- this was just a matter of getting rid of all the unnecessary divs, spans, <br>'s and inline CSS styles that you use when you're starting out.
this has a double benefit i reckon, because your actual text will gain more weight in the page algo, and more of your site will be spidered in one go, because it doesn't have to download as much (i gzipped all the pages as well, and introduced php caching)
2) removed every single piece of javascript off of the page, and stuck it in an external file.
3) used absolute positioning to move all of my actual text to the top of the HTML page, rather than having it come after all the navigation.
4) changed the main keyword so that it appears just once in the title, once in the description, once in the keywords, once in the <h1>, once in an image name, and once in the first paragraph... and just a very light smattering throughout the rest.
5) added a P3P policy, and ICRA label.
- these might not have had any effect, but with google banging on about "trust" all the time i figured that it couldn't hurt.
It will mean you can no longer do updates with frontpage, and the common-across-the-pages elements are now individual but this shouldn't be a problem because you are in the process of changing to a new system.
Hope that makes sense :)
Currently I am completely revising my website...
Me, too. I'm also using .htaccess with redirects. No sign of trouble yet, but I'm being cautious. Is Google smart enough to read your .htaccess file to figure out "new" pages are old pages with new names? I find it annoying Google keeps the old Google cache for a renamed webpage, while it indexes new pages. So there's a ton of duplicate content. (Previously I've had old web pages, deleted months if not years ago, still cached and indexed. This just wastes the time of surfers, who keep getting 404 errors; I keeping seeing these in the error logs.) The Google algo should be smart enough not to issue a penalty for rapidly renamed pages with pretty much the same content. But I've been updating old content on the same pace as I'd been adding new pages.
p/g
Unfortunately Googlebot will also continue to request page1.html for a very long time.
hope it helps :)
who keep getting 404 errors…
If your 301 redirect in your .htaccess is properly implemented, no request for the page from Google, or visitors should result in a 404. It should result in a 301.
You can only issue one status code per URI, unless you are using some sort of 'user-agent' switching, which would seem backward and purposeless in this case.
If you are running into an issue with 404 (Not Found) resources (which are not redirected to a 'new' location) being requested, you might implement a 410 (Gone) which indicates to a requesting agent the resource (document) should no longer be requested, because it has been 'permanently' or 'intentionally' removed.
A 404 only indicates the resource is 'Not Found' (at this time), but does not specify the resource has been 'permanently' or 'intentionally' removed, so the properly handling of a 404 is to re-request the resource periodically to see if it has become 200 'found'.
The following would indicate www.example.com/thepage.html has been intentionally removed and should not be re-requested:
RewriteRule ^thepage\.html$ - [G]
Justin