Configuring Apache for a Front Controller
From Photon Framework
You should must first enable mod_rewrite on apache.
Then you should place this code inside a VirtualHost configuration or an .htaccess file:
RewriteEngine On RewriteRule !^/(css|img|js) /index.php [NC,L]
This will rewrite anything that doesn't start with /css /img, or /js to /index.php
