Salut, j'ai un énorme soucis sur mon site pokerice.fr, si on fait http://www.pokerice.fr/nimportequoi on arrive au contenu de la page d'accueil.
Quelqu'un saurait comment fixer cela svp?
mon htaccess :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12 <IfModule mod_rewrite.c> Options +FollowSymlinks RewriteEngine on RewriteCond %{HTTP_HOST} !^www\.pokerice\.fr [NC] RewriteRule (.*) http://www.pokerice.fr$1 [QSA,R=301,L] RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] ErrorDocument 404 / </IfModule>
Partager