Re: [PHP] Template parser

2001-01-16 Thread Alex Black
you can do that in .htaccess or httpd.conf with the apache rewrite engine. _alex -- Alex Black, Head Monkey [EMAIL PROTECTED] The Turing Studio, Inc. http://www.turingstudio.com vox+510.666.0074 fax+510.666.0093 Saul Zaentz Film Center 2600 Tenth St Suite 433 Berkeley, CA 94710-2522 > Fr

Re: [PHP] Template parser

2001-01-16 Thread Paul K Egell-Johnsen
Hrishi wrote: > > Hello, > > Is it possible using apache .htaccess to have every file served from a > particular domain/directory > pass through a custom script? or is it necessary to make changes at the root > level? RewriteEngine on RewriteRule ^/(.+) http://newserver/$1 [R,L] or Rewrit