Joomla 3.4.4 SEO Tips – Easy to Improve SEO on Your Joomla Site

Easy to Improve SEO on Your Joomla Site

So you’ve chosen Joomla! as your CMS of choice. You’ve bought, or designed and developed a beautiful template and added all your creatively crafted content to your new Joomla! website and you are now ready to start open your website up to that hungry horde of customers hurling their credit cards at you.

Joomla 3.4.4 SEO Tips - Easy to Improve SEO on Your Joomla Site

One problem: If you’ve started with a base Joomla! installation, odds are that those thousands of people itching to get their hands on your products probably aren’t even going to be able to find your website in the first place. In contrast to WordPress (which is what you could consider Joomla!’s primary competitor) Joomla! Is simply not quite as search engine friendly right out the box. In fact, I have found that you actually need to go through a number of steps in order to get a Joomla! website into a position where it really performs satisfactorily when it comes to on-site SEO factors.

Without further ado, let’s get stuck into the meat of this tutorial.

Make Sure You’re on the Right Type of Server

This is the first step for a reason. It’s important.

I’m going to go out on a limb and say that if you are using an IIS (Windows) server to host your Joomla! website, you are going to get so frustrated that your Mac may end up at the bottom of a swimming pool. (This may or may not have happened)

The reason I say this is that URL rewriting just never seems to gel well with any rewrite module that IIS can use. Rewrite modules are also a nightmare to get set up if you are using a shared hosting account. I’ve also, on occasion, had issues with the installation and configuration of Joomla! on an IIS server.

For practicality and succinctness’s sake, I would simply recommend that you save yourself endless headaches and get your Joomla! site set up on an Apache server with mod_rewrite installed. Your nerves and the SEO components you’re going to install will thank you. If you want to use Apache Servers, you can count on ASPHostPortal‘s  unique handmade hosting solution. They use the latest Apache Servers version with a custom set of modules for more speed and security. They guarantee that their Apache Servers are regularly updated and perfectly secured, and your website will be safer, faster and better supported than anywhere else!

Rename htaccess.txt to .htaccess

Because you are going to want to enable URL rewriting to make those URLs a whole lot more attractive than they start out, you are going to need to rename the htaccess.txt file to .htaccess – which is the version used by Joomla! and mod_rewrite.

Enable SEF URLs and URL Rewriting

In your Joomla! Global Configuration, set the “Search Engine Friendly URLs” and “Use URL Rewriting” options to “Yes”.

Search Engine Friendly URLs is the setting that removes all the dynamically generated gobbledygook from your URL and replaces it with the alias of the menu item that you’re using on the page.

URL Rewriting is the setting that removes the /index.php/ from the URL. For this to be enabled must have mod_rewrite enabled and must have a .htaccess file.

The balance of the settings are really left more up to your discretion. I tend to prefer leaving the other three off. You may like to turn on the option to include your Site Name in your page titles, particularly if the site has a lot of content. Personally, I like to micro-manage everything and craft each title separately in most instances.

Remove “/images/” from your Robots.txt file

This is something about Joomla! that has always left me bewildered. In the automatically generated robots.txt file that is created on installation, Joomla! includes a disallow rule for the images directory, instructing the search engines not to search or index your images folder.

As you may well know, images can generate a sizable chunk of your traffic from Google and the search engines if you have them correctly optimized.

Because all the image optimisation in the world won’t help you if you are telling Google not to bother with your images directory, I highly recommend that you remove the following line from your robots.txt file:

/images/

Use Alt Tags and Image Dimensions

This tip is really not specific to Joomla! but it is important nevertheless. In case you weren’t aware, adding image dimensions to your images allows the “space” to load before the actual image does. This should help improve your load times a bit.

Manage Your Meta Data

Although meta keywords tags are pretty much redundant these days, your meta descriptions and title tags are still rather important.

I came across a pretty useful component quite recently, called SEO Boss. The only feature of this that I actually use is the meta tag manager, but I have found this to be extremely useful.

To edit meta data for your Joomla! website normally, you need to navigate to each menu item/article and edit the descriptions and page titles manually. With SEO Boss, you’ll find a single screen that lets you edit all of your meta data directly from that interface.

The only drawback to SEO Boss is that it may not gel well with all of your installed components, in which case you’ll need to go and manually edit those through the relevant component’s own interface. For everything else, however, it’s great.

Choose www. or non-www. and Redirect

Joomla!, unlike WordPress, doesn’t automatically redirect your website to either the www. or non-www. version. This obviously poses a canonical problem, which you need to correct manually via your .htaccess file.

To redirect from non-www. to www. add the following code to your .htaccess file:

RewriteEngine On

RewriteCond %{HTTP_HOST} !^www\.

RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]

Alternatively, you can redirect to non-www. by adding this code instead:

RewriteEngine On

RewriteCond %{HTTP_HOST} www.yourwebsitehere.com

RewriteRule (.*) http://yourwebsitehere.com/$1 [R=301,L]

Be Consistent When Linking Internally

When it comes to CMS websites (especially Joomla! ones) duplicate content can become a bit of a problem. The key to combating this is to ensure that you link consistently to internal content.

By this, I mean only creating links to either the www. or non-www. version that you chose above, only linking to pages using a trailing slash or no trailing slash, or pages with a suffix (.html) or no suffix. Only link to a single version of a page, ever.

Remember, it’s not duplicate content if nothing is linking to it for Google to find it.

You can’t really control the way others link to you, but you can set an example. If people are linking to you incorrectly, you can add further redirect rules to 301 redirect to the correct links.

Speed Up Your Website!

It has to be said that Joomla! doesn’t do page speed very well straight out of the box. The good news is that you can speed things up significantly by doing three main things: Leveraging browser caching, enabling Gzip compression and compressing your images.

Leverage Browser Caching

Without getting into too much detail, you want to utilize browser caching to instruct your browsers to cache certain types of content found on your site, as well as tell them how long to cache them for. My suggestion is to simply add the following code to the bottom of your .htaccess file:

ExpiresActive On

ExpiresByType text/html “access plus 1 seconds”

ExpiresByType image/gif “access plus 1 years”

ExpiresByType image/jpeg “access plus 1 months”

ExpiresByType image/png “access plus 1 months”

ExpiresByType text/css “access plus 1 months”

ExpiresByType text/javascript “access plus 1 months”

ExpiresByType application/x-javascript “access plus 1 months”

ExpiresByType image/ico “access plus 1 months”

You can, of course, tweak the code if your content needs to be held in the cache for shorter/longer periods, or if you would prefer not to cache certain types of content.

Enable Gzip

A good way to improve load times is to use Gzip to compress your code. I tend to only do this once I’ve got my whole site set up, but it’s generally a good idea to use it.

To enable Gzip via Joomla!, simply navigate to Global Configuration > Server and switch the option for Gzip compression to “Yes”.

Note: This will only work if mod_gzip is installed on your server.

Depending on your host, you may also be able to enable server size compression through your hosting control panel. I recommend enquiring from your hosting provider how you can go about this.

Optimize Your Images

Image optimization is something that every web designer should ensure happens, regardless of whether you’re using Joomla! or not. It’s ridiculous how many times I’ve come across websites loading 350kb images that can easily be cut down to 25kb. If you’re not an expert when it comes to Photoshop, you can download highly optimized versions of your images using Google’s Page Speed tool.

Through the above methods and other really minor tweaks, we generally manage a Google Page Speed score of 95+ and I can honestly report I find that many of our Joomla! sites actually perform better than similar WordPress sites that we’ve developed.

Install Xmap

Xmap is quite simply the best sitemap component that I’ve found for Joomla! thus far.

It seamlessly generates XML and HTML sitemaps for your website and there are many plugins available for popular Joomla! components such as Virtuemart and sh404sef.

Simply navigate to Xmap and create a new sitemap. Choose the menu items you want to include, set their priorities, click “Save” and voila! You can then create a menu item for your HTML sitemap and grab the link for your XML sitemap to add to Webmaster Tools.

Posted in Linux Hosting, PHP Hosting and tagged , , , , , , , , .