I've noticed many questions about that problem, but in my case the htaccess is very simple:
<IfModule mod_rewrite.c>
RewriteEngine on
#somecomment
RewriteBase /restAPI/
#continue if condition is true:
RewriteCond %{REQUEST_FILENAME} !-f # somecomment
RewriteCond %{REQUEST_FILENAME} !-d # somecomment
RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]
#somecomment
#somecomment
</IfModule>
4-5 weeks about now I haven't problem with that rewritebase, but now I can't start my simple RestAPI :/
Any suggestions why this doesn't work?