AntoCuc/php-rest-server/master/.htaccess - Htaccess File

AntoCuc/php-rest-server/master/.htaccess

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_METHOD} (GET)
    RewriteRule .* get.php
    RewriteCond %{REQUEST_METHOD} (PUT)
    RewriteRule .* put.php
    RewriteCond %{REQUEST_METHOD} (POST)
    RewriteRule .* post.php
    RewriteCond %{REQUEST_METHOD} (DELETE)
    RewriteRule .* delete.php
</IfModule>

On Github License

Files

Download PDF of Htaccess file
GET, POST, PUT, REQUEST_METHOD

Comments

Apache