<IfModule mod_rewrite.c>
#	DirectoryIndex api/api.php
	RewriteEngine on
 
#	RewriteCond %{REQUEST_FILENAME} -d [OR]
	RewriteCond %{REQUEST_FILENAME} -f
	RewriteRule .* - [S=3]
	RewriteRule (\S+)$ /api/api.php?path=$1 [QSA]
	
</IfModule>
