Blog

Logging Into The Joomla 3.1 Administrator Dashboard

Visit your Joomla 3 site’s homepage, and add /administrator to the end of the URL. If you inst...

Fixing .htaccess Generation Issues Permalink Problems

Fixing .htaccess Generation Issues If your installation of WordPress does not generate a .htaccess f...

Using Permalinks

Default: “Ugly” The default looks like http://example.com/?p=N where N is the Post ID nu...

HTTP error when uploading files

1) Add this to your .htaccess file at the root of your WordPress installation just before the # BEGI...

htaccess Force Require SSL

This will force SSL, and require the exact hostname or else it will redirect to the SSL version. Use...

htaccess | WordPress 3.4 and below

# BEGIN WordPress RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files Rew...

htaccess | Multisite WordPress 3.5 and Up

RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # add a trailing slash to /wp-admin Re...

htaccess | Basic WP

# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\....