Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Jonas Raoni Soares Silva http://jsfromhell.com

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Find files in previous folders with mod_rewrite

It recursively goes up in the directories structure until it finds the requested file name or fails with status 404

   1  
   2  RewriteEngine On
   3  RewriteCond %{REQUEST_FILENAME} !-f
   4  RewriteCond %{REQUEST_FILENAME} !-d
   5  	RewriteRule ^[^/]*/(.*) $1


Assuming the file "/test/x.txt" exists, when requesting the url "/test/blabla/folder/xyz/x.txt", it will go up until finding the requested file:
/test/blabla/folder/x.txt
/test/blabla/x.txt
/test/x.txt (found...)
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS