RewriteCond não está funcionando no Apache (mas ativado)

1

Eu recebo esses erros no meu arquivo de log de erros do Apache:

[Fri May 20 16:17:06 2011] [notice] Apache/2.2.17 (Ubuntu) PHP/5.3.5-1ubuntu7.2 with Suhosin-Patch configured -- resuming normal operations
[Fri May 20 16:17:11 2011] [alert] [client 127.0.0.1] /home/zomerovic/vhosts/brillelook/public_html/.htaccess: Invalid command 'RewriteCond', perhaps misspelled or defined by a module not included in the server configuration
[Fri May 20 16:17:12 2011] [alert] [client 127.0.0.1] /home/zomerovic/vhosts/brillelook/public_html/.htaccess: Invalid command 'RewriteCond', perhaps misspelled or defined by a module not included in the server configuration
[Fri May 20 16:17:12 2011] [alert] [client 127.0.0.1] /home/zomerovic/vhosts/brillelook/public_html/.htaccess: Invalid command 'RewriteCond', perhaps misspelled or defined by a module not included in the server configuration
[Fri May 20 16:17:12 2011] [alert] [client 127.0.0.1] /home/zomerovic/vhosts/brillelook/public_html/.htaccess: Invalid command 'RewriteCond', perhaps misspelled or defined by a module not included in the server configuration

Mas eu habilitei o mod_rewrite, assim como outros mods do apache (como o a2dismod diz):

Your choices are: auth_basic authn_file authz_default authz_groupfile authz_host authz_user autoindex cgi deflate dir env headers mime negotiation php5 reqtimeout setenvif status vhost_alias

Existe algum conflito com o RewriteCond com alguns dos outros mods, ou estou perdendo alguma coisa?

Obrigado.

    
por metaforce 20.05.2011 / 16:26

2 respostas

5

Executar

a2enmod rewrite
/etc/init.d/apache2 restart

E vai carregar o módulo de reescrita para você

o erro que você está vendo não é porque você não tem permissões para usar reescrita, mas porque não está disponível como pode ser visto na saída da lista a2dismod que você forneceu (não aparece na lista)

    
por 20.05.2011 / 17:22
0

Você é capaz de usar o mod_rewrite no seu arquivo .htaccess?

Veja AllowOverride FileInfo

    
por 20.05.2011 / 16:31