If you would like an easy way to have phpmyadmin.yourdomain.com automatically go to a secure page for phpMyAdmin, just put these three lines at the top of your .htaccess file: RewriteEngine On RewriteCond %{HTTP_HOST} ^phpmyadmin\. RewriteRule ^(.*)$ https:// yourserver .site5.com:2083/3rdparty/phpMyAdmin/index.php [L] substitute yourserver with the name of your site5 server. One more fine point. If you are using multiSite, you will need to put that code in the primary domain name .htaccess file. At site5, all undefined subdomains for any domain name are routed to the primary domain name. Avoid hard coding the path There are times when you want to code the full path in a script. For example, this could be done for includes where you are using the same code in many locations on your site. Many of the scripts on this page require a file path. Don't hard code the value in your scripts, as you make the scripts less portable and you are giving aw...