mod_rewrite for dynamic content
hi,I want to configure Apache so that a request to any URL in the domain is served by a single PHP script file.
In my naivety I had thought that placing the following lines in .htaccess might achieve this.
RewriteEngine On
RewriteRule /(.*) /index.php
RewriteRule /(.*) /index.php
wombat