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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.