Blame view

api/.htaccess 495 Bytes
734c1e57   Geoffrey PREUD'HOMME   Demo
1
2
3
4
  #  de rediriger api/blabla vers api/blabla.php
  
  Options +FollowSymLinks -MultiViews
  
13e1e4dd   Geoffrey PREUD'HOMME   Erreur customisées
5
6
7
8
9
10
  ErrorDocument 401 '{"status":"non_authentifie"}\n'
  ErrorDocument 403 '{"status":"acces_refuse"}\n'
  ErrorDocument 404 '{"status":"requete_inconnue"}\n'
  ErrorDocument 500 '{"status":"erreur_interne"}\n'
  ErrorDocument 503 '{"status":"service_indisponible"}\n'
  
734c1e57   Geoffrey PREUD'HOMME   Demo
11
  RewriteEngine On
3be3ed2a   Geoffrey PREUD'HOMME   Oups
12
  RewriteBase /api/
734c1e57   Geoffrey PREUD'HOMME   Demo
13
14
15
16
  
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME}\.php -f
  RewriteRule ^(.+)$ $1.php [L,QSA]