How can I redirect requests to specific files above the site root? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T07:43:00Zhttp://stackoverflow.com/feeds/question/445407http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/445407/how-can-i-redirect-requests-to-specific-files-above-the-site-root2How can I redirect requests to specific files above the site root?Limo Driver2009-01-15T02:13:06Z2009-01-16T15:53:26Z
<p>I'm starting up a new web-site, and I'm having difficulties enforcing my desired file/folder organization:</p>
<p>For argument's sake, let's say that my website will be hosted at:
<a href="http://mywebsite.com/" rel="nofollow">http://mywebsite.com/</a></p>
<p>I'd like (have set up) Apache's Virtual Host to map <a href="http://mywebsite.com/" rel="nofollow">http://mywebsite.com/</a> to the /fileserver/mywebsite_com/www folder.</p>
<p>The problem arises when I've decided that I'd like to put a few files (favicon.ico and robots.txt) into a folder that is ABOVE the /www that Apache is mounting the <a href="http://mywebsite.com/" rel="nofollow">http://mywebsite.com/</a> into</p>
<pre><code>robots.txt+favicon.ico go into => /fileserver/files/mywebsite_com/stuff
</code></pre>
<p>So, when people go to <a href="http://mywebsite.com/robots.txt" rel="nofollow">http://mywebsite.com/robots.txt</a>, Apache would be serving them the file from /fileserver/mywebsite_com/stuff/robots.txt</p>
<p>I've tried to setup a redirection via mod_rewrite, but alas:</p>
<pre><code>RewriteRule ^(robots\.txt|favicon\.ico)$ ../stuff/$1 [L]
</code></pre>
<p>did me no good, because basically I was telling apache to serve something that is above it's mounted root.</p>
<p>Is it somehow possible to achieve the desired functionality by setting up Apache's (2.2.9) Virtual Hosts differently, or defining a RewriteMap of some kind that would rewrite the URLs in question not into other URLs, but into system file paths instead?
If not, what would be the preffered course of action for the desired organization (if any)?</p>
<p>I know that I can access the before mentioned files via PHP and then stream them - say with readfile(..), but I'd like to have Apache do as much work as necessary - it's bound to be faster than doing I/O through PHP.</p>
<p>Thanks a lot, this has deprived me of hours of constructive work already. Not to mention poor Apache getting restarted every few minutes. Think of the poor Apache :)</p>
http://stackoverflow.com/questions/445407/how-can-i-redirect-requests-to-specific-files-above-the-site-root/445419#4454191Answer by strager for How can I redirect requests to specific files above the site root?strager2009-01-15T02:21:00Z2009-01-15T02:21:00Z<p>Can you use symlinks?</p>
<pre><code>ln -s /fileserver/files/mywebsite_com/stuff/robots.txt /fileserver/files/mywebsite_com/stuff/favicon.ico /fileserver/mywebsite_com/www/
</code></pre>
<p>(<code>ln</code> is like <code>cp</code>, but creates symlinks instead of copies with <code>-s</code>.)</p>
http://stackoverflow.com/questions/445407/how-can-i-redirect-requests-to-specific-files-above-the-site-root/445483#4454830Answer by Michael Haren for How can I redirect requests to specific files above the site root?Michael Haren2009-01-15T02:56:20Z2009-01-15T02:56:20Z<p>You can't use mod_rewrite because it rewrites <em>URLs</em>. Since URLs cannot access the files above the root folder, this approach simply won't work (and for good reason).</p>
<p>Instead, I think something along the lines of symlinks is what you need. Here's a solution that you might like better:</p>
<pre><code>www root: /files/com/www
files: /files/com/stuff/common [contents: favicon.ico, robots.txt, etc.]
</code></pre>
<p>Create a symlink from common to www/common:</p>
<pre><code>ln -s /files/com/stuff/common /files/com/www/common
</code></pre>
<p>Then, you can use a rewrite rule:</p>
<pre><code>RewriteRule ^(robots\.txt|favicon\.ico)$ /common/$1 [L]
</code></pre>
http://stackoverflow.com/questions/445407/how-can-i-redirect-requests-to-specific-files-above-the-site-root/450861#4508612Answer by Manni for How can I redirect requests to specific files above the site root?Manni2009-01-16T15:53:26Z2009-01-16T15:53:26Z<p>It seems you are set to using a RewriteRule. However, I suggest you use an Alias:</p>
<pre><code>Alias /robots.txt /fileserver/files/mywebsite_com/stuff/robots.txt
</code></pre>
<p>Additionally, you will have to tell Apache about the restrictions on that file. If you have more than one file treated this way, do it for the complete directory:</p>
<pre><code><Directory /fileserver/files/mywebsite_com/stuff>
Order allow,deny
Allow from all
</Directory>
</code></pre>