I want to have a url like http://localhost/folder1/folder2/folder3/file Then i want mod_rewrite to convert it to $_GET['d'] in the url it would look like d[]=folder1&d[]=folder2&d[]=folder3
Is this possible?
Thank You.
|
|
I want to have a url like http://localhost/folder1/folder2/folder3/file Then i want mod_rewrite to convert it to $_GET['d'] in the url it would look like d[]=folder1&d[]=folder2&d[]=folder3 Is this possible? Thank You. |
||
|
|
|
|
I don't know of a way to do it automatically, but you can retrieve what the requested URL was from $_SERVER['REQUEST_URI'] and perform your own string processing on it to extract the information you want. |
||||
|
|
|
This should give you a rough idea of what you'd need...
If you want to support an arbitrary number of directories, rather than 3 fixed directories, that'll be another issue altogether. |
||||
|
|
|
A good technique to use is a front controller (part of the MVC design pattern). A front controller is a (PHP) file to which every request that your website gets is routed. The front controller then dispatches the request to other files depending on the kind of request (look at page X, submission of form Y, etc). For example you can "cut up" the url of the request, using the technique described by @Ray Hidayat, and look at it to determine which part of your site should handle and or answer the request. For example: Zend Framework and Drupal both use this technique. In those cases, and I think in most cases, index.php in the root of the site is the front controller, so www.example.com/index.php You can use mod_rewrite to route every request to that the front controller.
You can use the following mod_rewrite script for images/files/CSS and javascript library.
Good luck! |
||
|
|
|
Yes it is possible:
But mod_rewrite is not really suited for that kind of work. In fact, you can quickly create an infinite loop with the N flag. You should rather use PHP to extract the requested URL path its segments:
Then use this single rule to rewrite the requests to your file:
|
||
|
|
|
|
This is what I do for Seach Engine Friendly URLs with unlimited amount of levels. It also gives you the option of allowing query strings or not, and will not rewrite urls to real folders or files like images, CSS and JavaScript. Apache...
PHP...
I then have a routing file which handles the request with the appropriate functions. It might seem like a lot of code but helps keep things organised and efficient as I only include the classes/functions that the request requires. I'm considering releasing a library of code (Urgh, not another framework I hear you cry) I use for my projects so feel free to use the code under GPL v3. Hope this helps. |
|||
|
|