mirror of
https://github.com/maxpozdeev/mytinytodo.git
synced 2026-03-11 08:55:27 +00:00
16 lines
375 B
ApacheConf
16 lines
375 B
ApacheConf
# For REST API in Apache
|
|
#<IfModule mod_rewrite.c>
|
|
# RewriteEngine On
|
|
# RewriteCond %{REQUEST_FILENAME} !-f
|
|
# RewriteCond %{REQUEST_FILENAME} !-d
|
|
# RewriteRule ^api/(.*)$ api.php/$1 [L,QSA]
|
|
#</IfModule>
|
|
#<Limit GET POST PUT DELETE>
|
|
# Allow from all
|
|
#</Limit>
|
|
|
|
|
|
# In Nginx set something like this:
|
|
# location /api/ {
|
|
# rewrite ^/api/(.*) /api.php/$1 last;
|
|
# }
|