JoomlaSEO » History » Revision 3
« Previous |
Revision 3/8
(diff)
| Next »
Anonymous, 2008-05-29 18:19
1 - Install JoomlaBR
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 settingsBR
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"
)
}
}}}
Updated by Anonymous over 16 years ago · 3 revisions