Difference between revisions of "Enabling Search Engine Friendly (SEF) URLs on Apache"

From Joomla! Documentation

m
Line 7: Line 7:
 
==Apache Instructions==
 
==Apache Instructions==
 
# Rename htaccess.txt to .htaccess.
 
# Rename htaccess.txt to .htaccess.
#: If Joomla is installed in its own folder, uncomment "RewriteBase <nowiki>/</nowiki>" and enter the Joomla folder name after the backslash.
+
#: Uncomment "RewriteBase <nowiki>/</nowiki>"
#: Example: <code>RewriteBase /joomla</code>
+
#: If Joomla is installed in its own folder, the enter the Joomla folder name after the backslash. e.g. "RewriteBase <nowiki>/</nowiki>yourjoomlafolder"
 
# Make sure that Mod_rewrite is working. Check that the line shown below in the file "apache/conf/httpd.conf" is uncommented. If necessary, uncomment the line and re-start the Apache web server.
 
# Make sure that Mod_rewrite is working. Check that the line shown below in the file "apache/conf/httpd.conf" is uncommented. If necessary, uncomment the line and re-start the Apache web server.
 
#: <code>LoadModule rewrite_module modules/mod_rewrite.so</code>
 
#: <code>LoadModule rewrite_module modules/mod_rewrite.so</code>

Revision as of 18:03, 26 February 2011

This article addresses SEF URLs under the popular, open-source Apache webserver.

SEF URL implementation is possible under Microsoft's IIS webserver as well, please see IIS and Joomla.

Joomla 1.6 In Joomla! 1.6 basic SEF urls are enabled by default. In prior versions you need to use the Global Configuration to enable them. The instructions below still apply if you want to use Apache's mod_rewrite.

Apache Instructions[edit]

  1. Rename htaccess.txt to .htaccess.
    Uncomment "RewriteBase /"
    If Joomla is installed in its own folder, the enter the Joomla folder name after the backslash. e.g. "RewriteBase /yourjoomlafolder"
  2. Make sure that Mod_rewrite is working. Check that the line shown below in the file "apache/conf/httpd.conf" is uncommented. If necessary, uncomment the line and re-start the Apache web server.
    LoadModule rewrite_module modules/mod_rewrite.so
  3. In Global configuration, set the three SEF options. The action of the three parameters is as follows:
    • Search Engine Friendly URLs. Converts the URLs from the native Joomla! format to the SEF format.
    • Use Apache mod_rewrite. Uses the Apache "mod_rewrite" function to eliminate the "index.php" portion of the URL. If you don't want to use mod_rewrite, set this to "No" and don't rename the htaccess.txt. The SEF URLs feature will still work. The only difference is that you will see "index.php" in the URL, for example, http://www.yoursite.org/index.php/faq.html.
    • Add suffix to URLs. Adds ".html" to the end of URLs.

COMMENT:

I believe the following are among the most common possibilities for how URLs look in Joomla 1.5 or 1.6. Someone who knows better please confirm if the below is true:

non-SEF (Joomla 1.5 default): http://www.yoursite.org/8-category/7-alias
This is typical of the easiest Non-SEF URLs to understand. You can tell this is not findable by search engines because it has no ".html" suffix. See SEF Ugly for their other disadvantages. These are a result of Joomla generating dynamic webpages and the need ensure their URL's are unique. With Joomla 1.6 you are more likely to see SEF Ugly than this because of the new default Global Configuration settings.

SEF Ugly (Joomla 1.6 default): http://www.yoursite.org/8-category/7-alias.html
These are findable by search engines but ugly to remember and harder for a visitor to paste in an email. Their length may break a pasted URL in an email, causing lost visitors. Most websites link to other pages of the same site. Admin must paste those links into your site, the easiest way to do that with SEF Ugly links is to browse to the target page while editing the other page, much more trouble than with SEF Pretty URLs. Even with the Global settings above, you may get this if your hosting service has not correctly installed the appropriate server change.

SEF Pretty URL: http://www.yoursite.org/alias.html
This is findable by search engines and easy to remember. It is easier for Admin to type into another page of site or for a visitor to type in an email. This requires Joomla 1.5 or 1.6 with the three SEF settings as above, plus the appropriate server change installed. Notice for these Admin is responsible for ensuring alias names are unique for each page of your site. If there are two pages with the same alias, browsing to either is unpredictable.

You want SEF Pretty URLs as early as possible. They will bring visitors because they remember it or a friend sent them an email about it. Converting from non-SEF or SEF Ugly can be a lot of URL retyping in your site. Search engines rate the URL itself worthy as a search result. Changing the URL later will lose historical search value for that page unless you take more technical measures.