Client Login

Knowledgebase

The knowledgebase is organized into different categories. Either choose a category from below or search the knowledgebase for the answer to your question.

Search

Articles

Article How can I rewrite the URL to the www or non-www version so visitors will only go to that URL?
Use one of the following in .htaccess to rewrite the URL: #Non-WWW to WWW version: Options...
Views: 3276
Article How can I setup dynamic/custom error pages?
If you have defined your own custom Error Pages using the "Define Error Pages" tool within the...
Views: 3094
Article How can I use htaccess to password protect a directory?
Create a file named .htaccess in your web directory that contains the following: AuthUserFile...
Views: 3082
Article How do I block a specific domain?
Add the following to .htaccess: order allow,deny deny from fraudster.com allow from all...
Views: 2930
Article How do I do a rewrite instead of a 302 for missing pages?
Use something like this: RewriteEngine on RewriteCond %{REQUEST_FILENAME} !index.html...
Views: 3025
Article How do I prevent spam from email harvestering?
Use the following in .htaccess: RewriteEngine on RewriteCond %{HTTP_USER_AGENT} ^Bullseye.*...
Views: 3021
Article How do I rewrite the URL for my parked domain to my main domain?
Add the following to .htaccess: Options +FollowSymLinks RewriteEngine on RewriteCond...
Views: 3161
Article How do I stop off-line browsers/ robot surfers?
Try the following in .htaccess: RewriteEngine On RewriteCond %{HTTP_USER_AGENT} ^Mozilla...
Views: 2953
Article How do I turn Directory Indexing off?
Add the following to .htaccess: Options -Indexes Turn it back on: Options +Indexes
Views: 3190
Article Redirecting your domain or any subdirectory
By adding a "Redirect" statement to your .htaccess file, you can redirect any subdomain or your...
Views: 3420