Jump to content

Virtual directories


Horst Azeglio

Recommended Posts

Is it possible in PHP to create "virtual directories" (like in wikipedia)?
for instance http://en.wikipedia.org/wiki/Wayne_Gretzky
There's no Wayne_Gretsky directory

another 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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.