@@ -0,0 +1,4 @@
+<IfModule mod_rewrite.c>
+ RewriteEngine on
+ RewriteRule ^(.*)$ public/$1 [L]
+</IfModule>
@@ -0,0 +1,6 @@
+ RewriteCond ${REQUEST_FILENAME} !-d
+ RewriteCond ${REQUEST_FILENAME} !-f
+ RewriteRule ^ index.php [L]
@@ -0,0 +1,3 @@
+<?php
+
+echo "Hello";