by Aromal Rajagopal | Feb 2, 2010 | Quick fixes, Technical |
Issue : How can you access cPanel like, say, http://domainname.com/xyz ? This is for security purposes. Solution : This can be done but not recommended as it would not be of much effect security-wise. Even if you change it, cPanel/WHM would still run on the standard...
by Aromal Rajagopal | Jan 29, 2010 | Quick fixes, Technical |
Issue : Need to redirect https://domain.com to https://www.domain.com for SSL purposes. Solution : Use the following code in the htaccess file under the public_html folder for the concerned domain : RewriteEngine On RewriteCond %{HTTP_HOST} ^domain.com [NC]...
by Aromal Rajagopal | Sep 29, 2009 | Quick fixes, Technical |
Issue : How to point a parked domain to a sub-directory of the main domain without any change in the URL ? Fix : This is like making the parked domain function like an add-on domain. Assuming that the parked domain name is abc.com and the corresponding folder under...
by Aromal Rajagopal | Sep 11, 2009 | Quick fixes, Technical |
Issue : While some construction is going on the site, all pages on the website should go to the index page. Solution : This can be easily achieved by using the following code in your .htaccess file : < IfModule mod_rewrite.c > RewriteEngine On RewriteBase /...
by Aromal Rajagopal | Aug 26, 2009 | Quick fixes, Technical |
Issue : Regardless of somebody accessing the site with or without the ‘www’ , it should always go to http://domain.com Solution : Use the following htaccess code : RewriteEngine on RewriteCond %{HTTP_HOST} ^www.domain.com RewriteRule ^(.*)...