rest-proxy.php

Simple proxy for RESTful APIs
git clone git://git.finwo.net/app/rest-proxy.php
Log | Files | Refs | README

.htaccess (185B)


      1 # We'll route everything to our app
      2 
      3 DirectoryIndex app.php
      4 
      5 RewriteEngine on
      6 RewriteCond %{REQUEST_FILENAME} !-d
      7 RewriteCond %{REQUEST_FILENAME} !-f
      8 RewriteRule ^(.*)$ /app.php [NC,L]