Configuring Apache for a Front Controller

From Photon Framework

Revision as of 02:59, 24 November 2007 by Alvaro (Talk | contribs)
(diff) ←Older revision | Current revision (diff) | Newer revision→ (diff)
Jump to: navigation, search

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