After certificate approval download SSL and intermediate certificate from within the SSL application.
Install SSL - install Intermediate Certificates
Open the WHManager - click Activate SSL Certificate in the SSL/TLS menu.
You will see a screen with three boxes on it. Your issued certificate, RSA private key and certificate bundle must be pasted into boxes 1, 2, and 3, respectively.
In the first box, paste in the contents of your issued SSL certificate. If the certificate file is on your server, you may use the Fetch button to copy it from the file.
In the second box, paste in private key which was generated when you created the CSR.
In the third box, paste in the certificate bundle (sf_bundle.crt).
At the top of the page click Do it.
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 with www.yourpage.com and yourpage.com. For search engines, these are two different sites with the same content.
Non WWW to WWW redirection
#Options +FollowSymlinks
RewriteEngine On
RewriteCond %{http_host} ^yoursite.com
RewriteRule ^(.*) http://www.yoursite.com/$1 [R=301,L]
If you have any problem please remove “#” from the first line.
Every time I reboot the vps, it comes as hostname “defaulthostname”. How to prevent this?
1. You can change its hostname with the command ‘hostname‘
# hostname
without parameter it will output the current hostname.
# hostname your-hostname
will set the hostname of the system to your-hostname
2. Login to SSH as root and navigate to etc/sysconfig then type: chattr +i network.
cd ..
cd etc/sysconfig
chattr +i network
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
- blo.gs
- love.me
- schokola.de
- autom.at
- ma.rs
- bike.rs
- you.rs
How you can find a good domain name hack
First - you need to get a list of all the extensions that are possible with a domain name.
Then you need to find a domain name company that can provide you with the extesion your are looking for.
:: — The most frequently occuring words ending with rs
:: — RS Domain Registrations – accredited registrar
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 full latin character set, as well as characters from other locales, including Chinese and Japanese.
IDN Domains work by encoding the domain name using a system called Punycode (see RFC 3492).
To register a IDN, go to www.irist.com/idn/
On suphp servers you should remove the lines from .htaccess file that begin with “php_value” and “php_flag”. You will need to add the settings that you want to use to a file named php.ini and upload php.ini into your public_html directory.
You will need to remove php_value and php_flag from ALL .htaccess files you may have
In .htaccess under public_html, add the following:
suPHP_ConfigPath /home/AccountUserName/public_html
<Files php.ini>
order allow,deny
deny from all
</Files>
In php.ini under public_html add the settings that you want to use:
register_globals = On
post_max_size 6M
upload_max_filesize 6M
max_execution_time 90
max_input_time 90
....