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
Modifié par cyberdede (15 Oct 2019 - 14:40)
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
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
Modifié par cyberdede (15 Oct 2019 - 14:40)