Free online SEO content (article) spinner
freeseospinner.com finished and deployed
Finally after week or something of coding, debugging, testing and localizing (still not finished) english version of FreeSEOSpinner ready to use at freeseospinner.com.
FreeSEOSpinner is free online SEO (search engine optimization) content (article) spinner (generator) that allows to create infinite number of various kind of online (offline too) content: articles, posts, status messages, titles, links etc.
FreeSEOSpinner unique dissimilarity that this is whole javascript application, that runs on user browser (all online spinners that i know works on server, sending content over http). User information does not go away from his computer. More confidence is unachievable
.
FreeSEOSpinner is really free. Free of charge, free from registrations, submissions, etc.
Generation time for 1000 spuns from 1000 symbols template — 11 sec.
Promotional part finished. o_~
Technical part.
FreeSEOSpinner is a client-side javascript application created using GWT (Google Web Toolkit). Google Web Toolkit, by the way, is amazing tool which (together with Android) makes Java deathless.
The irony with FreeSEOSpinner that, as javascript application, it is not itself SEO enabled. It’s content can’t be indexed by google (bing, yagoo) bots. The solution was to create alternate, bots friendly (plain html) site especially for bots. Common opinion is that, so far as content of two sites is the same, Google does not protest. Great chance to check it!
With some respect to robots (robots are humans, too) i used WordPress to create alternate SEO friendly site. For those who still use something different installing wordpress and creating three simple pages takes about several minutes. And last but not least: wordpress has great sitemap.xml plugin that automatically creates sitemap (after each post) and submit it to google, yahoo, bing and ask.
So, after wordpress installation and deploying javascript application we have two important files in public html folder: index.php (wordpress) and home.html (javascript application).
How to do motion control: robots — left and humans — right? At the beginning, all together friendly come to index.php. And there face control occures. Implementation is obvious.
$user_agent = $_SERVER['HTTP_USER_AGENT'];
$http_host = $_SERVER['HTTP_HOST'];
if ( eregi('MSIE',$user_agent)
|| eregi('Firefox',$user_agent)
|| eregi('Chrome',$user_agent)
|| eregi('Opera',$user_agent)
|| eregi('Safari',$user_agent)
|| eregi('Maxthon',$user_agent)
|| eregi('Flock',$user_agent)
|| eregi('Avant Browser',$user_agent)
|| eregi('Deepnet Explorer',$user_agent)
|| eregi('PhaseOut',$user_agent)) {
//HUMANS GO HOME!
header( 'Location: http://'.$http_host.'/home.html' ) ;
} else {
//ROBOTS YOU WELCOME!
define('WP_USE_THEMES', true);
/** Loads the WordPress Environment and Template */
require('./wp-blog-header.php');
}
Technical part finished too.
Good luck!
Update.
There many such sites already in the web. Not so good as mine
but very similar. After analyzing their traffic discovered that the most popular keyword is “free article spinner”, so decided to change domain name and site content to match this keyword. Now domain name is http://bestfreearticlespinner.com . Not original, but, probably, efficient.
Related posts:
- Best PDF Search Engine finished!
- Free Windows Blogging Software Review
- All blog services
- How to check that site built using WordPress























