Re: protecting internal redirects
Michael Peters <[email protected]>
| Newsgroups | gmane.comp.apache.mod-perl |
|---|---|
| Message-ID | <[email protected]> |
On 03/18/2010 04:59 PM, E R wrote: > My question is: can the url which points to the cached results be > protected so that it cannot be directly accessed by external clients? You should be able to do something like this for that <Location> block (so you might have to put that URL inside of a separate <Location> block) assuming the IP of your machine is 1.2.3.4 Order Deny,Allow Deny from all Allow from 1.2.3.4 -- Michael Peters Plus Three, LP