JoomlaSEO » History » Revision 4
Revision 3 (Anonymous, 2008-05-29 18:19) → Revision 4/8 (Anonymous, 2008-07-31 21:10)
1 - Install Joomla[[BR]]
2 - Go Joomla admin -> Global Configuration -> Site. Enable '''Search Engine Friendly URLs''' and '''Use Apache mod_rewrite'''[[BR]]
3 - In lhttpd add this site description, where change '''
{{{
$HTTP["host"]
}}}
and
{{{
server.document-root
}}}
to you's settings[[BR]]
[[BR]]
Example
{{{
$HTTP["host"] =~ "(^|\.)site\.com$" {
server.document-root = "/usr/local/www/data/site.com"
url.rewrite-once = (
"^images*\\.(jpg|jpeg|gif|png)" => "$0",
"^/administrator.*$" => "$0",
"^/mambots.*$" => "$0",
"(/|\\.htm|\\.php|\\.html|/[^.]*)$" => "/index.php"
)
}
}}}
[[BR]]
!