Optimizing Search Engine Coverage of a WordPress Blog

To opti­mize the search engine cov­er­age a robots.txt file placed in the root of the HTML serv­er can exclude some paths of the web­site from being indexed by the Google crawler.

In Word­Press this file can be gen­er­at­ed auto­mat­i­cal­ly. In the case of using Nginx a redi­rec­tion rule has to be imple­ment­ed in the nginx con­fig file so that the query to robots.txt is redi­rect­ed to the Word­Press index.php file.

# generate robots.txt with wordpress
location = /robots.txt {
    try_files     $uri $uri/ /index.php?$args;
    access_log    off;
    log_not_found off;
}

Now Word­Press is used to gen­er­ate the robots.txt file which is dynam­i­cal­ly edit­ed by plu­g­ins and themes.

Chrome OS — News von der Google I/O 2011

Am zweit­en Tag der Google I/O 2011 wur­den in der Keynote einige Neuerun­gen in Googles Chrome Brows­er und in Chrome OS vorgestellt. Der Unter­schied zwis­chen diesen bei­den beste­ht darin, daß es sich bei Chrome OS um ein kom­plettes Betrieb­ssys­tem han­delt, in nur eine App­lika­tion läuft: ein Chrome Brows­er. Um noch einen weit­eren ähn­lichen Namen hinzuzufü­gen gibt es auch noch Chromi­um, das ist das Open Source Pro­jekt, in dem Chrome und Chrome OS entwick­elt wer­den. Unter der Haube han­delt es sich bei Chrom(ium) OS um eine Vari­ante von Gen­too Linux.

Read More