I think PATHINFO is probably what i'm looking for. Paul mentioned the "lookback" feature, i think that is or about the same thing. MediaWiki-1.15.1 use the pattern of url for common pages like this : some_path_to_mediawiki/index.php/something , and the 'something' supports even non-english characters. Maybe this kind of usage to transfer params can improve the SEO ? I was trapped in the question "how can the MediaWiki scripts affect the apache's behaviour", then finally found out it just takes advantage of the existing "FEATURE" when i tried this kind of url to my script which var_dump the $_SERVER and saw the "pathinfo" ... Thank you all, best wishes ~ Deng 2009/7/23 Ford, Mike <M.Ford@xxxxxxxxxxxxxx> > > -----Original Message----- > > From: Paul M Foster [mailto:paulf@xxxxxxxxxxxxxxxxx] > > Sent: 23 July 2009 06:13 > > > > On Thu, Jul 23, 2009 at 11:57:51AM +0800, ?????? wrote: > > > > > But I cannot help myself with the url pattern : > > > /somepath_to_mediawiki/index.php/pagetitle. > > > > > > How can this kind of url be parsed to the file "index.php" and the > > > "pagetitle" be parsed as params? > > > > > > Why the web server not go straight into path "index.php/" and look > > for the > > > file named "pagetitle" ? > > > > > > > This type of thing is common for sites using the "MVC" or > > "Model-View-Controller" paradigm. The index.php file is what's > > called a > > "front controller". A front controller is usually the entrance to > > all > > the other pages of a site. URLs like this often take advantage of an > > Apache feature called "mod_rewrite", which tells Apache how to > > handle > > URLs which look like this. > > Or by the "pathinfo" mechanism, which I believe is also supported by other > Web servers, and can work just as well, if it satisfies your requirements, > without all the complications of mod_rewrite. > > > Cheers! > > Mike > -- > Mike Ford, > Electronic Information Developer,Libraries and Learning Innovation, > Leeds Metropolitan University, C507, Civic Quarter Campus, > Woodhouse Lane, LEEDS, LS1 3HE, United Kingdom > Email: m.ford@xxxxxxxxxxxxxx > Tel: +44 113 812 4730 > > > > > > > To view the terms under which this email is distributed, please go to > http://disclaimer.leedsmet.ac.uk/email.htm > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > >