Forum Moderators: coopster
the HTTP GET is only used to know which page to serve, does this still slow things down?
www.repurposed.com/about/index.php
www.repurposed.com/about/
if your php script is doing a separate roundtrip to another server before responding, yes.- it wouldn't, the "core" site and the "repurposed" site would be reference with paths from Apache /home/
use the DIrectoryIndex directive to set the default directory index document to index.php and use this url instead:
www.repurposed.com/about/
RewriteEngine On
RewriteRule ^([^/]*)/([^/]*)\.htm$ /index.php?section=$1&page=$2 [L]
RewriteEngine On
RewriteRule ^([^/]*)/([^/]*)\.htm$ /index.php?section=$1&page=$2 [L]