How can I reroute all requests for php pages through index.php?
My .htaccess is as follows:
Options +FollowSymLinks IndexIgnore */* #Turn on the Rewr
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !index\.php$ RewriteRule .*\.php$ index.php?q=%{REQUEST_URI} [L]
Will catch all requests ending in .php that don't point to a file ending in index.php and redirect them to index.php in the get parameter q
q