Sorry I did not send it to the list
--- Begin Message ---
Check out phpbuilder; the article is named Building Dynamic Pages With
Search Engines in Mind

http://phpbuilder.com/columns/tim20000526.php3?aid=20

Hope this helps


On Fri, 2004-08-13 at 07:44, Curt Zirzow wrote:
> * Thus wrote Ashley M. Kirchner:
> > 
> >    Anyone have an article written, or can point me to one that talks 
> > about converting URLS from:
> > 
> >    http://www.domain.com/script.php?var=1&var=2
> > 
> >    ...to:
> > 
> >    http://www.domain.com/script/var1/var2
> 
> I'm not aware of any articles but the trick basically goes like
> this:
> 
> - set up the webserver to parse a file name 'script' as php
>   aka with apache:
> 
>   <Files script>
>     SetHandler   application/x-httpd-php
>   </Files>
>     
> - script uses $_SERVER['PATH_INFO'] to know what was passed:
>   echo $_SERVER['PATH_INFO'];
> 
>   results with: /var1/var2
> 
> 
> The rest is up to your discretion.
> 
> 
> Curt
> -- 
> First, let me assure you that this is not one of those shady pyramid schemes
> you've been hearing about.  No, sir.  Our model is the trapezoid!


--- End Message ---
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to