by sandipransing
Search Engines ( like google, yahoo ) mainly uses crawlers for returning results.
Crawler is the program which searches world wide web ( www ) and returns ranked pages.
Lets see what are the search engine optimization (SEO) techniques we can adopt so that your rails
website pages will appear in search results.
1. Title Of Page
2. Meta tags
3. Page URL
4. Page Contents ( this includes anchors to other pages, headers, image titles and alt texts when image not found then normal texts )
We can easily skip some pages from search by mentioning them in robots.txt which is by default should be in application root.
And Ofcourse, we can manage all this in rails very easily..
How ????
We can have in rails
1. Dynamic page titles,
2. Meta tags and
3. Sexy perma URLs in rails
4. Also, we can define some standard on page content development.
...got Easy ......, Cheers !
$@ndip
Read More…
by sandipransing
sudo apt-get install libmysqlclient15-dev
wget http://sphinxsearch.com/downloads/sphinx-0.9.8-rc2.tar.gz
tar xvf sphinx-0.9.8-rc2.tar.gz && rm sphinx-0.9.8-rc2.tar.gz
cd sphinx-0.9.8-rc2
./configure
make
sudo make install
Read More…