J'ai travaillé sur localhost, et mon fichier htaccess est le suivant
Options +FollowSymLinks
Options -Indexes
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule (.*) $1.php [L]
après avoir ajouté le code htacces, l'url
localhost/movies/news.php
travaux
localhost/movies/news
fonctionne également mais
localhost/movies/news/
ne fonctionne pas. Il affiche "Internal Server Error" Comment faire pour que cela fonctionne avec barre oblique et sans barre oblique.