I am trying to create a php framework. I am following this tutorial. But my .htaccess
is not working. I have enabled my htaccess. But it is still not working. My .htaccess
file is supposed to redirect me to the index.php
folder, but it is not doing anything. Here is my code:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ public/ [L]
RewriteRule (.*) public/$1 [L]
</IfModule>
How do I revise this?