When I first installed Webtemplates, I wanted to figure out how to change the location of the view.php pages so that I could have a site that looked like this to the end users:
www.delicto.com/finance (instead of
http://www.delicto.com/vb/view.php?pg=finance_main)
Here's what I did.
1 - On my server, I created a PHP page called
www.delicto.com/finance/index.php
2 - On that page I inserted this code:
HTML Code:
<base href=http://delicto.com/vb/>
<?php
include("http://www.delicto.com/vb/view.php?pg=finance_main");
?>
This just uses the "include" feature of PHP to pull the content of that individual page into the desired location.
Not very elegant, because I'll have to set up each page that way (I hate it when things aren't dynamic) but it gets the job done. Hopefully this will help someone else too.
And, as alwyas, if anyone has other ideas of how to do it better, I'd love to hear it. Thanks!