Je rencontre un probleme au niveau de mon htaccess lorsque ce dernier est en ligne
J'ai essayé d'acceder aux pages via la page PHP et ca fonctionne bien.
Ma règle est la suivante :
CODE
Options -Indexes
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^([a-z]+)/([-a-z0-9]+)/([0-9]+)/index\.html$ photo_index.php?type=$1&cat=$2&id=$3 [L]
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^([a-z]+)/([-a-z0-9]+)/([0-9]+)/index\.html$ photo_index.php?type=$1&cat=$2&id=$3 [L]
J'ai essayé comme ca :
CODE
RewriteRule ^/([a-z]+)/([-a-z0-9]+)/([0-9]+)/index\.html$ photo_index.php?type=$1&cat=$2&id=$3 [L]
RewriteRule ^([a-z]+)/([-a-z0-9]+)/([0-9]+)/index\.html$ /photo_index.php?type=$1&cat=$2&id=$3 [L]
RewriteRule ^/([a-z]+)/([-a-z0-9]+)/([0-9]+)/index\.html$ /photo_index.php?type=$1&cat=$2&id=$3 [L]
RewriteRule ^([a-z]+)/([-a-z0-9]+)/([0-9]+)/index\.html$ \photo_index.php?type=$1&cat=$2&id=$3 [L]
RewriteRule ^([a-z]+)/([-a-z0-9]+)/([0-9]+)/index\.html$ /photo_index.php?type=$1&cat=$2&id=$3 [L]
RewriteRule ^/([a-z]+)/([-a-z0-9]+)/([0-9]+)/index\.html$ /photo_index.php?type=$1&cat=$2&id=$3 [L]
RewriteRule ^([a-z]+)/([-a-z0-9]+)/([0-9]+)/index\.html$ \photo_index.php?type=$1&cat=$2&id=$3 [L]
mais cela ne change rien
Auriez vous une idée d'ou vient le probleme, parceque là, je ne comprends pas
Le probleme ne vient pas de la page index.html/index.php (la page d'accueil du site), vu que je l'ai supprimé pour faire ces tests. Idem pour la règle la concernant.
Merci !