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