Joomsef v2.1 is working beautifully in my site. But for the life of me i can never get the metabot to work. I have done the index.php hack:
<html xmlns=\"
www.w3.org/1999/xhtml\">
<head>
<?php
checkSEFTitle();
generateSEFMeta();
?>
<?php
if ( $my->id ) {
initEditor();
}
mosShowHead();
?>
Of course mambot is published.
My htaccess:
DirectoryIndex index.php
RewriteEngine On
RewriteBase /
##Rule for duplicate content removal :
www.domain.com vs domain.com
RewriteCond %{HTTP_HOST} ^mydomain\.com$ [NC]
RewriteRule (.*)
www.mydomain.com/$1 [R=301,L,NC]
RewriteCond %{REQUEST_URI} ^(/component/option,com) [NC,OR]
RewriteCond %{REQUEST_URI} (/|\.htm|\.php|\.html|/[^.]*)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.php
Is there anything else I should do?