Looks like it works to me. You will probably need to create an .htaccess file that will point it to your index.php file instead of the index.html file.
PHP Code:
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
DirectoryIndex /index.php
Options ExecCGI FollowSymLinks Includes
Now, I don't know much about .htaccess files, but it works for me
Josh