Relative Paths in .htaccess, how to attach to a variable?
- by devians
I have a very heavy htaccess mod_rewrite file that runs my application. As we sometimes take over legacy websites, I sometimes need to support old urls to old files, where my application processes everything post htaccess.
My ultimate goal is to have a 'Demilitarized Zone' for old file structures, and use mod rewrite to check for existence there before pushing to the application.
This is pretty easy to do with files, by using:
RewriteCond %{IS_SUBREQ} true
RewriteRule .* - [L]
RewriteCond %{ENV:REDIRECT_STATUS} 200
RewriteRule .* - [L]
RewriteCond Public/DMZ/$1 -F [OR]
RewriteRule ^(.*)$ Public/DMZ/$1 [QSA,L]
This allows pseudo support for relative urls by not hardcoding my base path (I cant assume I will ever be deployed in document root) anywhere and using subrequests to check for file existence. Works fine if you know the file name, ie http://domain.com/path/to/app/legacyfolder/index.html
However, my legacy urls are typically http://domain.com/path/to/app/legacyfolder/
Mod_Rewrite will allow me to check for this by using -d, but it needs the complete path to the directory, ie
RewriteCond Public/DMZ/$1 -F [OR]
RewriteCond /var/www/path/to/app/Public/DMZ/$1 -d
RewriteRule ^(.*)$ Public/DMZ/$1 [QSA,L]
I want to avoid the hardcoded base path. I can see one possible solutions here, somehow determining my path and attaching it to a variable [E=name:var] and using it in the condition.
Any implementation that allows me to existence check a directory is more than welcome.