23/09/2011, 22:42:54
Aïe... effectivement, l'hébergement m'a pas mal posé de problèmes (certaines commandes fonctionnent mal)...
Le .htaccess :
Le .htaccess :
Code :
AddHandler x-httpd-php5 .php
AddType application/x-httpd-php5 .php
SetEnv PHP_VER 5
RewriteEngine On
# Redirige pokertoolsonline.fr vers www.pokertoolsonline.fr
RewriteCond %{HTTP_HOST} !^www\.pokertoolsonline\.fr [NC]
RewriteRule (.*) http://www.pokertoolsonline.fr/$1 [QSA,R=301,L]
# Protection
RewriteCond %{QUERY_STRING} ^(.*&)?error=http://
RewriteRule ^(.*/)?errors.php - [F,L]
# Peut être requis avec un sous dossier
RewriteBase /
# Pretty urls
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?page=$1 [QSA]
# Pour rediriger index.html, index.php.... vers la racine de site (Pb avec .html)
RewriteEngine On
RewriteCond %{THE_REQUEST} ^(GET|POST|HEAD)\ (/.*)?/index.(htm|html|php|asp|shtml)
RewriteRule ^(.*)index.(htm|html|php|asp|shtml)$ /$1 [R=301,L]
#Page renommée (ne marche pas)
#RewriteCond %{REQUEST_URI} ^/nombre-de-tables-ouvertes-winamax.html
#RewriteRule ^(.*) http://www.pokertoolsonline.fr/multi-tabling-winamax.html [L,R=301]