Problème tuto avec le fichier .htaccess
Bonjour,
Je viens de débuter ce tutoriel et j'ai un problème de ce genre lorsque je crée le fichier .htaccess.
Citation:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, admin@localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Voici le code du fichier :
Code:
1 2 3 4 5 6 7 8 9 10 11 12
| # Règles de réécriture pour Zend Framework
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* index.php
# Sécurité : Ne pas autoriser le parcours de répertoires
Options -Indexes
# Configuration PHP
php_flag magic_quotes_gpc off
php_flag register_globals off
php_flag short_open_tag on |
Quelqu'un a-t'il une idée de l'erreur qui se produit ?
Merci par avance.