Can one of you guys experienced with Mosso and EE tell me what I need to do to remove ‘index.php’ from the URL’s there? Looks like they have some sort of ‘cloud’ or whatever. I’ve already found that I have to specify the DOCUMENT-ROOT in the path.php file in order to get Imgsizer to work, like this:
$global_vars =
array(
$_SERVER['DOCUMENT_ROOT'] = '/mnt/Target01/123456/098765/www.oursite.com/web/content'
);
Because PHPInfo was showing the DOCUMENT_ROOT as being /var/www.
Now I’m reading that I may need to add ‘RewriteBase’ to my .htaccess file? I tried this and no dice:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) /index.php/ [L]
Do I have to use either the include/exclude method? Thanks for any Mosso/EE insight.
