.htaccess causa erro 500

1

Estou tentando usar o mecanismo de reescrita no Apache. Este é meu .htaccess

<IfModule mod_rewrite.c>
Options +FollowSymLi2nks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$  index.php [QSA,R=301,L,NC]
</IfModule>

Não entendo por que isso está gerando um erro 500 no apache.

    
por Luca Santarella 26.04.2015 / 15:57

1 resposta

0

Alterar

Options +FollowSymLi2nks

para

Options +FollowSymLinks
    
por Florian Diesch 26.04.2015 / 16:06