Horst Azeglio Posted July 13, 2006 Share Posted July 13, 2006 Is it possible in PHP to create "virtual directories" (like in wikipedia)?for instance http://en.wikipedia.org/wiki/Wayne_GretzkyThere's no Wayne_Gretsky directoryanother good example of what I'm looking for is this forum itself!each topic is a "virtual" html file. How do you do that?Thank you Link to comment https://forums.phpfreaks.com/topic/14537-virtual-directories/ Share on other sites More sharing options...
ShogunWarrior Posted July 13, 2006 Share Posted July 13, 2006 Well the most common thing to do is to use apache mod_rewrite and a set of rewriting rules to rewrite the URL to a backend page.However, if you want the simple way you can do this trick:URL in browser is: [b]www.site.com/index.php/Directory/NoExist[/b]Now, index.php will run fine and $_SERVER['PATH_INFO'] will be something like this:[b]/Directory/NoExist[/b]By parsing this you can easily to a pseudo -rewrite without extra modules. Link to comment https://forums.phpfreaks.com/topic/14537-virtual-directories/#findComment-57640 Share on other sites More sharing options...
Horst Azeglio Posted July 13, 2006 Author Share Posted July 13, 2006 sounds good, I'll do that right now. thanks Link to comment https://forums.phpfreaks.com/topic/14537-virtual-directories/#findComment-57641 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.