[eluser]ixxalnxxi[/eluser]
$config['base_url'] = "http://mysite.com/dir1/dir2/dir3/";
and my .htaccess is
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/system.*
RewriteRule ^(.*)$ index.php?/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?/$1 [L]