Some more SEO
First : Structured Data and Data Highlighter of Google Webmaster Tool
Under Google webmaster tool -> for your site -> on the left menu -> site appearance : there are two options such as Structured Data and Data Highlighter. Using Data Highlighter tool, you can create Structured Data and Tag your web-site content. You can mark your webpages and indicate what are events pages, what are product pages and similar. Within each page type, you can mention attributes for that type; for example for product pages, you can highlight name, product ID, product image, product price, product review and similar.
Google will use this data to render the search result for your page. If it is done right, you hopefully will get more search queries and also your result may be shown especially that users will notice the difference and click on your links.
.htaccess and SEO
Search engines consider http://stepforth.com and http://www.stepforth.com different websites. As a result, if your website has been linked to from other websites using a mix of the two URLs you are effectively splitting the potential benefit of valuable link popularity.
Reference:
http://www.stepforth.com/resources/web-marketing-knowledgebase/non-www-redirect/#apache
Solution:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^justetc.net
RewriteRule (.*) http://www.justetc.net/$1 [R=301,L]
Tool to check if the redirect worked ok or not
http://www.stepforth.com/resources/server-header-checker-tool/#.Urdu7rTDsek
This solution worked for me..
—-
Some Related .htaccess Redirect stuff
# This allows you to redirect your entire website to any other domain
Redirect 301 / http://mt-example.com/
You can utilize this rule for the purpose
so that http://www.justetc.net/tutor
and http://tutor.justetc.net always show up as http://tutor.justetc.net
Example:
Redirect 301 /tutor/ http://tutor.justetc.net/
If you have moved a sub-folder to a new domain; you can also utilize this redirect
Redirect 301 /knowledge/ http://www.salearningschool.com/
——
# This allows you to redirect your entire website to any other domain
Redirect 302 / http://mt-example.com/
# This allows you to redirect index.html to a specific subfolder
Redirect /index.html http://example.com/newdirectory/
# Redirect old file path to new file path
Redirect /olddirectory/oldfile.html http://example.com/newdirectory/newfile.html
# Provide Specific Index Page (Set the default handler)
DirectoryIndex index.html From: http://sitestree.com/?p=624
Categories:Web Development, Root, By Sayed Ahmed
Tags:
Post Data:2013-12-22 23:40:30