Habilitando URLs amigáveis para mecanismos de buscas (SEF) no Hiawatha

From Joomla! Documentation

This page is a translated version of the page Enabling Search Engine Friendly (SEF) URLs on Hiawatha and the translation is 100% complete.
Other languages:
English • ‎français • ‎português do Brasil

Use a seguinte regra do UrlToolkit para habilitar URLs limpos no servidor web Hiawatha:

UrlToolkit {
    ToolkitID = joomla
    Match base64_encode.*\(.*\) DenyAccess
    Match (<|%3C).*script.*(>|%3E) DenyAccess
    Match GLOBALS(=|\[|\%[0-9A-Z]{0,2}) DenyAccess
    Match _REQUEST(=|\[|\%[0-9A-Z]{0,2}) DenyAccess
    RequestURI exists Return
    Match /index.php Return
    Match ^/component/ Skip 2
    Match ^(/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$ Skip 1
    Skip 1
    Match .* Rewrite /index.php
}

Habilite uma regra do UrlToolkit para um host virtual por meio da configuração do UseToolkit:

VirtualHost {
    ...
    UseToolkit = joomla
}