Bonjour,
J'utilise actuellement le framework symfony pour mon projet qui est actuellement en ligne. Tout marche pour le mieux pour l'instant.
Sauf que j'ai voulu rajouter une règle de réécriture dans le fichier .htaccess qui fait planter mon site.
Cette règle transforme mon adresse : http//monsite.com en http://www.monsite.com
Sauf quand quand je tape http//monsite.com je suis redirigé vers http//www.monsite.com/public_html/
Voici mon fichier .htaccess :
Si vous pouviez m'aider, ce serait sympa.
Je ne sais pas si vous avez besoin de plus d'infos ?
Merci.
J'utilise actuellement le framework symfony pour mon projet qui est actuellement en ligne. Tout marche pour le mieux pour l'instant.
Sauf que j'ai voulu rajouter une règle de réécriture dans le fichier .htaccess qui fait planter mon site.
Cette règle transforme mon adresse : http//monsite.com en http://www.monsite.com
Sauf quand quand je tape http//monsite.com je suis redirigé vers http//www.monsite.com/public_html/
Voici mon fichier .htaccess :
Code:
Options +FollowSymLinks +ExecCGI
<IfModule mod_rewrite.c>
RewriteEngine On
# uncomment the following line, if you are having trouble
# getting no_script_name to work
# RewriteBase /
RewriteCond %{HTTP_HOST} !^www\.monsite\.com [NC]
RewriteRule ^(.*)$ http://www.monsite.com/$1 [L,R=301]
# we skip all files with .something
#RewriteCond %{REQUEST_URI} \..+$
#RewriteCond %{REQUEST_URI} !\.html$
#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]
</IfModule>
Je ne sais pas si vous avez besoin de plus d'infos ?
Merci.