Remove index.php do codeigniter no xamp

u tentei algumas respostas, mas continuo enfrentando o bom e velho muro 404 de terror. Estou no Windows 7 usando uma pilha xamp. mod_rewrite está ativado.

Coloquei o arquivo htaccess no diretório "codeigniter" principal, ou seja, o diretório com application, system e user_guide. Em vez disso, devo colocá-lo no diretório do aplicativo? Aquele com as views / model / config / etc.?

Aqui está meu arquivo .htaccess atual:

RewriteEngine On

# Put your installation directory here:
# If your URL is www.example.com/, use /
# If your URL is www.example.com/site_folder/, use /site_folder/

RewriteBase /website/codeigniter/

# Do not enable rewriting for files or directories that exist
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# For reuests that are not actual files or directories,
# Rewrite to index.php/URL
RewriteRule .* index.php/$0 [PT] 

Accessinghttp: //localhost/website/codeigniter/index.php/welcom works Acessandohttp: // localhost / website / codeigniter / welcome

My config.php possui

$config['base_url'] = 'http://localhost/website/codeigniter/';
$config['index_page'] = '';

Qualquer ajuda muito apreciada!

O erro é:

Object not found!

The requested URL was not found on this server. If you entered the URL manually please check your spelling and try again.

Error 404

ATUALIZA Ah, apenas pensei em procurar nos logs do apache, recebendo este erro:

[Thu Mar 08 18:28:25 2012] [error] [client ::1] File does not exist: C:/xampp/htdocs/website/codeigniter/welcome

Então parece não estar recebendo o redirecionamento adequado do codeigniter? Não tenho certeza

questionAnswers(14)

yourAnswerToTheQuestion