Apache, .htaccess - Forbidding direct access to a file, but allow rewrites to go there - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T19:13:56Zhttp://stackoverflow.com/feeds/question/632921http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/632921/apache-htaccess-forbidding-direct-access-to-a-file-but-allow-rewrites-to-go0Apache, .htaccess - Forbidding direct access to a file, but allow rewrites to go thereFizzley2009-03-11T00:51:39Z2009-03-11T01:58:14Z
<p>I've figured out how to write something like www.test.com/test to www.test.com/test.php. This is useful to give a simpler browsing experience and obscure the use of the PHP. However, I'd like to go farther and disallow access to www.test.com/test.php completely, and allow access only through www.test.com/test in order to prevent people from discovering the use of PHP by simply trying it in a URL.</p>
<p>The problem is that if I disallow access to www.test.com/test.php, then www.test.com/test no longer works, since the disallow rule is triggered after the rewrite to www.test.com/test.php is done.</p>
<p>Is this possible to do? Any alternative suggestions for hiding the programming language used are welcome.</p>
http://stackoverflow.com/questions/632921/apache-htaccess-forbidding-direct-access-to-a-file-but-allow-rewrites-to-go/632976#6329760Answer by Kalmi for Apache, .htaccess - Forbidding direct access to a file, but allow rewrites to go thereKalmi2009-03-11T01:19:41Z2009-03-11T01:58:14Z<p>Have a look at the "last rule" and "no continue" flag.</p>
<p><a href="http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html" rel="nofollow">http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html</a></p>
<pre><code>This is an example to block certain domains from hotlinking to your images.
You could apply it to your case (the NC flags is important) :
RewriteCond %{HTTP_REFERER} !^http://(www\.)?leech_site\.com/ [NC]
RewriteRule \.(gif|jpg|png)$ - [F,L]
</code></pre>
http://stackoverflow.com/questions/632921/apache-htaccess-forbidding-direct-access-to-a-file-but-allow-rewrites-to-go/633017#6330171Answer by David for Apache, .htaccess - Forbidding direct access to a file, but allow rewrites to go thereDavid2009-03-11T01:44:55Z2009-03-11T01:44:55Z<p>One thing you could do is locate the PHP files somewhere outside of the document root and use an AliasMatch directive. If your PHP files are in <code>/var/www-php/www.test.com</code> try</p>
<pre><code>AliasMatch ^(.*)$ /var/www-php/www.test.com/$1.php
</code></pre>
<p>Usually when you want to disallow access to files except under specific conditions, moving them outside the document root is a good way to do that.</p>