Blame view

api/.htaccess 237 Bytes
734c1e57   Geoffrey PREUD'HOMME   Demo
1
2
3
4
5
6
7
8
9
10
  #  de rediriger api/blabla vers api/blabla.php
  
  Options +FollowSymLinks -MultiViews
  
  RewriteEngine On
  RewriteBase /api/
  
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME}\.php -f
  RewriteRule ^(.+)$ $1.php [L,QSA]