Bonjour à tous
je voudrais quand je tape https;//monsite/dossier accéder à https;//monsite/dossier/index.php
or j'accède à https;//monsite/dossier/ avec un 404
en localhost ca fonctionne
pour la racine https;//monsite c'est ok
mon htaccess
je voudrais quand je tape https;//monsite/dossier accéder à https;//monsite/dossier/index.php
or j'accède à https;//monsite/dossier/ avec un 404
en localhost ca fonctionne
pour la racine https;//monsite c'est ok
mon htaccess
Code:
RewriteEngine On
Options -Indexes
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L]
RewriteCond %{HTTPS} ^off$ [NC]
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
AddDefaultCharset UTF-8
ErrorDocument 404 /404.php