Latest posts made by charliesaidthat
-
RE: All SEO factors in one place, anybody?
I don't think its exhaustive but I remember stumbling across this post which covers a lot a while back:
http://www.searchenginejournal.com/200-parameters-in-google-algorithm/15457/
I think it may now underestimate how many factors are taken into account with social media.
posted in Industry News
-
RE: How do you perform competitive research for SEO?
Although I am still learning a lot from everyone here I usually start off on competitor research by asking my client who they think their competitors are. Then I perform searches for a range of their keywords and identify online competitors (who are often a different bunch to the clients).
Things that I look at include:
- Search Trends (Use Google Insights for keywords)
- Likihood Client + Competitors sites are to convert from users perspective
- Competitors Ranking URLs Page Authority (and Page Rank)
- Competitors Domain Authority
- What elements of onsite they are optimising
- The range of other keywords they are targeting
- Inbound Links (to domain and ranking URLs)
- Link Velocity (Majestic SEO is pretty damn good for this)
- Whether they have keywords in their URLs
- Anchor Text of inbound and internal links
- Internal Linking of sites
- Their Use of social media
This isnt an exhaustive list by any means and each time I run audits and competitive research I find new things that are (probably) affecting rankings.
The thing is, there is no way to cookie cut research as search engines themselves are evolving.
posted in Competitive Research
-
RE: Migrating a site with new URL structure
Personally I am with you on 301'ing the old pages to the new ones. I would submit the new sitemap to Google and wait.
It can take a month or two for old pages to shift completely.
posted in Intermediate & Advanced SEO
-
RE: How do I fix a 404 with a 301
Hi Ben,
You probably want to redirect a single page if it is going to a 404. In which case you probably just want add code into the header of the problem page. Whilst you are at it, it might be worth checking that your non-www. pages are forwarding to the www versions. (http://exampledomain.com -> http://www.exampledomain.com)
PHP Redirect
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.exampledomain.com" );
?>
Htaccess 301 Redirect (non-www. to www.)
Options +FollowSymLinks RewriteEngine On
RewriteBase / RewriteCond %{HTTP_HOST} !^www.exampledomain.com$ [NC] RewriteRule ^(.*)$ http://www.exampledomain.com/$1 [R=301,L]
Custom 404 Page
I would also suggest a custom 404 page with links to your most popular pages, search and a back button.
Hope this helps.
C
posted in On-Page Optimization
Best posts made by charliesaidthat
-
RE: How do you perform competitive research for SEO?
Although I am still learning a lot from everyone here I usually start off on competitor research by asking my client who they think their competitors are. Then I perform searches for a range of their keywords and identify online competitors (who are often a different bunch to the clients).
Things that I look at include:
- Search Trends (Use Google Insights for keywords)
- Likihood Client + Competitors sites are to convert from users perspective
- Competitors Ranking URLs Page Authority (and Page Rank)
- Competitors Domain Authority
- What elements of onsite they are optimising
- The range of other keywords they are targeting
- Inbound Links (to domain and ranking URLs)
- Link Velocity (Majestic SEO is pretty damn good for this)
- Whether they have keywords in their URLs
- Anchor Text of inbound and internal links
- Internal Linking of sites
- Their Use of social media
This isnt an exhaustive list by any means and each time I run audits and competitive research I find new things that are (probably) affecting rankings.
The thing is, there is no way to cookie cut research as search engines themselves are evolving.
posted in Competitive Research
-
RE: How do I fix a 404 with a 301
Hi Ben,
You probably want to redirect a single page if it is going to a 404. In which case you probably just want add code into the header of the problem page. Whilst you are at it, it might be worth checking that your non-www. pages are forwarding to the www versions. (http://exampledomain.com -> http://www.exampledomain.com)
PHP Redirect
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://www.exampledomain.com" );
?>
Htaccess 301 Redirect (non-www. to www.)
Options +FollowSymLinks RewriteEngine On
RewriteBase / RewriteCond %{HTTP_HOST} !^www.exampledomain.com$ [NC] RewriteRule ^(.*)$ http://www.exampledomain.com/$1 [R=301,L]
Custom 404 Page
I would also suggest a custom 404 page with links to your most popular pages, search and a back button.
Hope this helps.
C
posted in On-Page Optimization
I am an internet marketer that loves music. I am most interested in fan behaviour. One of the first patterns I recognised was fans using search.
It fascinates me and I love learning more about how SEO can be used to convert fans to conversions.