PDA

Voir la version complète : Problème avec .htaccess sur demo1g


SkY92
01/08/2007, 12h35
Bonjour,
J'essaye d'installer symfony depuis plusieurs jours.
Cependant j'ai un problème au niveau du .htaccess qui m'empeche de le faire fonctionner correctement.

Visiblement les lignes qui font planter sont :
mod_gzip_on Off
Options +FollowSymLinks +ExecCGI

Car en les commentant je n'ai plus l'erreur OVH, cependant impossible de faire tourner symfony sans le FollowSymlinks.


Merci d'avance.

Mon htaccess :

SetEnv PHP_VER 5
SetEnv REGISTER_GLOBALS 0
SetEnv MAGIC_QUOTES 0
mod_gzip_on Off

Options +FollowSymLinks +ExecCGI

<IfModule mod_rewrite.c>
RewriteEngine On

# we skip all files with .something
RewriteCond %{REQUEST_URI} \..+$
RewriteCond %{REQUEST_URI} !\.html$
RewriteCond %{REQUEST_URI} !\.php
#RewriteCond %{REQUEST_URI} !\.php
RewriteRule .* - [L]

# we check if the .html version is here (caching)
RewriteRule ^$ /index.html [QSA]
RewriteRule ^([^.]+)$ /$1.html [QSA]
RewriteCond %{REQUEST_FILENAME} !-f

# no, so we redirect to our front web controller
RewriteRule ^(.*)$ /index.php [QSA,L]

# hidden frontoffice controller
RewriteRule ^index\.php/(.*)$ /index.php [QSA,L]

# fo controllers
RewriteRule ^frontend\.php/(.*)$ /frontend.php [QSA,L]
RewriteRule ^frontend_dev\.php/(.*)$ /frontend_dev.php [QSA,L]

</IfModule>

# big crash from our front web controller
ErrorDocument 500 "<h2>Application error</h2>symfony application failed to start properly"