Category: How to

  • How to register an Estonian – .EE domain name

    How to register an Estonian – .EE domain name

    The top level domain of Estonia in the Internet is .ee, which in 2010 became accessible to all private persons and legal entities in the world. The .EE domain is extremely important for defining Internet identity for everyone who lives and works in Estonia. You can register .ee domains in three easy steps: Step 1 – Compose a valid…

  • 9 Rules for Choosing the Right Domain Name

    9 Rules for Choosing the Right Domain Name

    Make the Domain Unique Having your website confused with a popular site already owned by someone else is a recipe for disaster. Thus, I never choose domains that are simply the plural, hyphenated or misspelled version of an already established domain. Brainstorm 5 Top Keywords When you first begin your domain name search, it helps…

  • Redirecting a domain to a website with a query string

    Redirecting a domain to a website with a query string

      A permanent 301 redirect in the  .htaccess file lets search engines know that an old link has been replaced by a new one. It’s the recommended method for directing traffic from an existing page. Some common uses of a 301 .htaccess redirect to a new website with a query string:   wildcard redirection OLDDOMAIN.COM/XXX.php?YYY…

  • software RAID Detecting, querying and testing

    software RAID Detecting, querying and testing

      More about software RAID… It’s always a must for /var/log/messages to fill screens with tons of error messages, no matter what happened. But, when it’s about a disk crash, huge lots of kernel errors are reported. Some nasty examples, for the masochists, kernel: scsi0 channel 0 : resetting for second half of retries. kernel:…

  • How to register IDN domains?

    How to register IDN domains?

    How to register and purchase an IDN? An Internationalized Domain Name (IDN) is a domain name that may contain characters outside the ASCII character set. The IDN system allows Internet users to use the full alphabet of their language in their domain names. They’re no longer restricted to the English A-Z, and can use the…

  • How to find good domain hacks

    How to find good domain hacks

    Domain hacks, are  domain names that combines domain levels to spell out the full title or name of the domain name. These type of domains spells out a word by using a combination of periods and less popular country-based  extensions. Domain hacks offer the ability to product very short domain names. Examples:   – del.icio.us…

  • Redirect ALL files on your Domain Site Redirect Code

    Redirect ALL files on your Domain Site Redirect Code

      To redirect ALL files on your domain use this in your .htaccess  file if you are on a linux web server:   redirectMatch 301 ^(.*)$ http://www.site.net redirectMatch permanent ^(.*)$ http://www.site.net You can also use one of these in your .htaccess file: redirect 301 /index.php http://www.site.net/index.php redirect permanent /index.php http://www.site.net/index.php redirectpermanent /index.php http://www.site.net/index.php If you…

  • How to redirect non www to www

    How to redirect non www to www

      There are still sites you cannot reach without using www in domain name. That is DNS configuration problem, but what if you find that your site is indexed with 2 domain names – one withwww.yourpage.com and yourpage.com. For search engines, these are two different sites with the same content. Non WWW to WWW redirection…